var bdj = jQuery.noConflict();

// page init
bdj(document).ready(function(){

	bdj("a.open_popup_vid").live('click', function() {
     bdj.fancybox({
        'padding'             : 0,
        'autoScale'   		  : false,
		'transitionIn'		  : 'elastic',
		'transitionOut'	      : 'elastic',
		'titleShow'			  : false,
		'overlayOpacity'	  : 0.7,
		'overlayColor'		  : '#000',
        'width'               : 710,
        'height'              : 400,
        'href'                : this.href = this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '?autoplay=1&rel=0&showinfo=0&modestbranding=1&autohide=1',
        'type'                : 'swf',    // <--add a comma here
        'swf'                 : {'allowfullscreen':'true', 'wmode':'transparent'} // <-- flashvars here
          });
         return false;

    }); 
    
});

