$(document).ready(function() {
	$("#slider a").each(function() {
		var lnk = $(this).attr("href");
		if( lnk.indexOf("youtube") != -1 ) {
			
			$(this).fancybox({
            	'titleShow'     : false,
            	'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
            	'type'      : 'swf',
            	'swf'       : {'wmode':'transparent','allowfullscreen':'true'}
        	});

		}
	});
});
