$(function(){    Shadowbox.init({         handleOversize:     "resize",    	 displayNav:         false,         handleUnsupported:  "remove",         autoplayMovies:     false    });	function openMailingList() {        Shadowbox.open({                player:     'iframe',                title:      'Join Escape The Fate&#8217;s Mailing List',				content:    'https://pages.email.interscope.com/escapethefate/emailsignup5/',                height:     400,                width:      600        });	}	//openMailingList();		$("#btn-mailinglist").click(function(e) {		openMailingList();		e.preventDefault();	});	function openVideo() {        Shadowbox.open({                player:     'iframe',                title:      'Issues Video',				content:    '/splash/issues-video/',                height:     600,                width:      800        });	}	//openVideo();	$("#btn-video").click(function(e) {		openVideo();		e.preventDefault();	});	function openTracklist() {        Shadowbox.open({                player:     'iframe',                title:      'Escape The Fate - Tracklist',				content:    '/splash/tracklist.html',                height:     600,                width:      600        });	}	$("#btn-tracklist-standard").click(function(e) {		openTracklist();		e.preventDefault();	});	$("#btn-tracklist-deluxe").click(function(e) {		openTracklist();		e.preventDefault();	});});
