Shadowbox.init({
	// let's skip the automatic setup because we don't have any
	// properly configured link elements on the page
	loading:	"",
	modal: false,
	displayNav:false
	

});


$(document).ready(function() {
	$('.subscribeButton').bind('click' , function(){
		Shadowbox.open({
			content:    '/email/newsletter-signup.php',
			player:     "iframe",
			title:      "",
			height:     480,
			width:      600
		});
	})

	$('#ourworkButton').bind('click' , function(){
		Shadowbox.open({
			content:    '/loginPop.php?showClose=1',
			player:     "iframe",
			title:      "",
			height:     382,
			width:      500
		});
	})
});
	

