var version=parseInt(navigator.appVersion);
if ((navigator.appName.match(/NETSCAPE/gi) != null)&&version<5){
	document.write("</head><body><p align='center'>This page will not appear properly with your browser! Try <a href='noCSS.asp'>this</a> version of the page. Please upgrade</p>");
	document.close();
}
/*
else {
	document.write("<link href='style.css' rel='styleSheet' type='text/css'></head><body>");
	document.close();
}*/


var currentPic=1;
function shuffle(picArray){	
	document.picture.src=picArray[currentPic]
	currentPic+=1;
	currentPic=currentPic%picArray.length;
}