$(document).ready(function() {
		
	$("a.video").fancybox({
                overlayShow: true,
                frameWidth:550,
                frameHeight:412,
				hideOnContentClick: false, 
				'callbackOnClose': function() {   // this is important to finish the video after closing fancybox 
       			$("#fancy_content").empty(); 
       			} 
       
            });
	$("a.gallery").fancybox({
                overlayShow: true,
                frameWidth:428,
                frameHeight:328,
				hideOnContentClick: false, 
				'callbackOnClose': function() {   // this is important to finish the video after closing fancybox 
       			$("#fancy_content").empty(); 
       			} 
       
            });
	$("a.videoclass").fancybox({
                overlayShow: true,
                frameWidth:424,
                frameHeight:304,
				hideOnContentClick: false, 
				'callbackOnClose': function() {   // this is important to finish the video after closing fancybox 
       			$("#fancy_content").empty(); 
       			} 
       
            });

});