// page initialization
jQuery(document).ready(function(){

	pid = $('body').attr("class");
	
	$("div#jumpMenu ul").superfish({delay:200,animation:{height:"show"},speed:300,dropShadows:false,autoArrows:false});

	$("a[@href^='http']").attr('target','_blank');

	$.trackPage('UA-321625-1');
	
	$('a').track();

});

function prev() {
	var toPage = "";
	if ((ch > 1) && (ch <=15)) toPage = "ch"+(ch-1)+".php";
	else if (ch == 1) toPage = "index.php";
	if (toPage != "") window.location.href = toPage;
}

function next() {
	var toPage = "";
	if ((ch >= 0) && (ch < 15)) toPage = "ch"+(ch+1)+".php";
	else if (ch == 15) toPage = "donate.php";
	if (toPage != "") window.location.href = toPage;
}

function rndm(n) { return Math.round((Math.random())*n); }

// open a new window and bring it to the front
function jsWindow(u,w,o) {
	jsOpen = window.open(u,w,o);
	jsOpen.window.focus();
}

// open printable page
function printPage(u) {
	jsWindow(u,"Printing","width=600,height=500,scrollbars=1");
}
