// Video Player Rotate
$(document).ready(function(){
      var myVids = new Array(); 
      myVids[0] = '<iframe width="520" height="322" src="http://www.youtube.com/embed/BP11mUsuJps" frameborder="0" allowfullscreen></iframe>'; 
      myVids[1] = '<iframe width="520" height="322" src="http://www.youtube.com/embed/vPkyRV2cMRQ?hd=1" frameborder="0" allowfullscreen></iframe>'; 
            
      var myRandom = Math.floor(Math.random()*myVids.length); 
      $('#video').html(myVids[myRandom]);
   });

// Fancybox Video Premiere
$(document).ready(function() {

	$("a#vidbig").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'overlayColor'  : '#000',
			'overlayOpacity': '0.8',
			'title'			: this.title,
			'width'			: 840,
			'height'		: 497,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			'wmode'				: 'transparent',
			'allowfullscreen'	: 'true',
			'centerOnScroll'    : 'true',
			}
		});

		return false;
	});
	// Remove dashes to go live
	$("a#vidbig").trigger('click');
	
});


