$(document).ready(function() {
    $("a.fancy").fancybox({
        'padding'               : 0,           //Space between FancyBox wrapper and content
        'overlayOpacity'        : 0.75,          //Opacity of the overlay (from 0 to 1; default - 0.3)
        'overlayColor'          : '#000',       //Color of the overlay
        'titlePosition'         : 'inside'     //The position of title. Can be set to 'outside', 'inside' or 'over'
    });		

	$('iframe').each(function() {
		var fixed_src = $(this).attr('src') + '?wmode=transparent';
		$(this).attr('src', fixed_src);
	});
});

