$(document).ready(function() {
$("a.fotoflickr").fancybox({
	'titleShow'			: false
});
$(".fancy").fancybox({
	'titleShow'			: false
});
$("a.iframe").fancybox({
	'width'				: 510,
	'height'			: 160,
	'autoScale'			: false,
	'transitionIn'		: 'none',
	'transitionOut'		: 'none',
	'type'				: 'iframe'
});
$("a.more").click(function() {
	$.fancybox({
	'padding'             : 0,
	'autoScale'   : false,
	'transitionIn'        : 'none',
	'transitionOut'       : 'none',
	'title'               : this.title,
	'width'               : 680,
	'height'              : 495,
	'href'                : this.href = this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '&autoplay=1',
	'type'                : 'swf',    // <--add a comma here
	'swf'                 : {'allowfullscreen':'true'} // <-- flashvars here
});
return false;

});
});
