// JavaScript Document

function PopUpWin(surl, nwidth, nheight) {
	var nwWidth;
	var nwHeight;
	//half the screen width minus half the new window width (plus 5 pixel borders).
	nwWidth = (window.screen.width/2) - (nwidth/2 + 10);
	//half the screen height minus half the new window height (plus title and status bars).
	nwHeight = (window.screen.height/2) - (nheight/2 + 50);
	//Open the window.
	var nWindow = window.open(surl,"NSBPromo","status=no,height="+ nheight +",width="+ nwidth +",resizable=yes,left=" + nwWidth + ",top=" + nwHeight + ",screenX=" + nwWidth + ",screenY=" + nwHeight + ",toolbar=0,menubar=0,scrollbars=1,location=0,directories=0");
	nWindow.focus();
}

$(document).ready(function(){
	$("a#hrefSummerCamp").fancybox({
		'width'				: 950,
		'height'			: '100%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'margin'			: 0,
		'padding'			: 0,
		'titleShow'			: false,
		'showNavArrows'		: false
	});
	$("a#hrefBirthdays").fancybox({
		'width'				: 950,
		'height'			: '100%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'margin'			: 0,
		'padding'			: 0,
		'titleShow'			: false,
		'showNavArrows'		: false
	});
});

function summerCampPage()
{
	$("a#hrefSummerCamp").trigger("click");
}

function birthdaysPage()
{
	$("a#hrefBirthdays").trigger("click");
}
