// page initialization
$(document).ready(function(){

	$("div#pageMenu ul#nav").superfish({delay:150,animation:{opacity:"show"},speed:150,dropShadows:false,autoArrows:false});

	pid = $('body').attr("class");
	
	if (pid == "isHome") {
		$('#contentImg').shuffle();
		$('#contentImg').cycle({timeout:5000,speed:2000});
	} else if (pid == "isCore") {
		$('#contentImg').shuffle();
		$('#contentImg img:first').show();
	}
	
});

function rndm(n) { return Math.round((Math.random())*n); }

