$(function(){	 Shadowbox.init({		language: 'en' //don't alter			, useSizzle: false //don't alter - it's loaded with jquery			, players: ['img', 'html', 'qt'] // 'img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv'			, animate: false // default true			, fadeDuration: 0.5 // default .35			, overlayColor: "#000000"			, overlayOpacity: 1		}); //end:Shadowbox init	function showVideo() {        Shadowbox.open({                player:     'iframe',                title:      'Lady Gaga | Yoü and I',				content:    'http://www.youtube.com/v/8NK02HXzcPM&autoplay=1',                height:     400,                width:      900        });	}	function openMailingList() {        Shadowbox.open({                player:     'iframe',                title:      'Join Lady Gaga&#8217;s Mailing List',				content:    'http://pages.email.interscope.com/ladygaga/emailsignup/',                height:     500,                width:      600        });	}	//openMailingList();		$("div#supersized").click(function(e) {		showVideo();		e.preventDefault();	});	$("div#text").click(function(e) {		showVideo();		e.preventDefault();	});	$("#btn-mailinglist").click(function(e) {		openMailingList();		e.preventDefault();	});});$(document).ready(function() {	/**************************************************		POSTS	**************************************************/		$('div').hover(function(){		$('#play').animate({opacity: '1'}, {queue:false, duration: 500});	},	function(){		$('#play').animate({opacity: '0'}, {queue:false, duration: 500});	});	});
