$(function(){
    Shadowbox.init({
         handleOversize:     "resize",
    	 displayNav:         false,
         handleUnsupported:  "remove",
         autoplayMovies:     false
    });

	function openMailingList() {
        Shadowbox.open({
                player:     'iframe',
                title:      'Join Destinee & Paris&#8217; Mailing List',
				content:    'https://pages.email.interscope.com/destineeandparis',
                height:     500,
                width:      600
        });
	}
	
	function openTourDates() {
        Shadowbox.open({
                player:     'iframe',
                title:      'On Tour with Britney Spears',
				content:    'tour.html',
                height:     259,
                width:      520
        });
	}
	//openMailingList();
	
	$("#emailSignup").click(function(e) {
		openMailingList();
		e.preventDefault();
	});
	$("#tour").click(function(e) {
		openTourDates();
		e.preventDefault();
	});
});
