$(document).ready(function() {
   //Activate FancyBox
   $("a.player_w").fancybox({
      // avoid closing fancybox with clickable content
      'hideOnContentClick': false,
      // set the fancybox size
      'frameWidth':480,
      'frameHeight':270,	
	  'type': 'swf', 
	  'swf': {
	  'wmode': 'transparent',
	  'allowfullscreen': 'false'
	   },

      // avoid video keep playing after
      // fancybox is closed in IE
      'callbackOnClose': function() {
         $("#fancy_content").empty();}
      });
   });