$(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/X9YMU0WeBwU&autoplay=1&allowfullscreen="true"',
                height:     598,
                width:      960
        });
	}
	//openMailingList();
	
	$("div#supersized").click(function(e) {
		showVideo();
		e.preventDefault();
	});
	$("div#text").click(function(e) {
		showVideo();
		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});
	});
	
});
