<!--
//**************************************************/
//  © 1997-2004  Nortia Technologies.   All rights reserved.
//
//	File:			incTopBanner.js		
//	Author(s):		ks
//  Created:		1/13/2004	
//	Description:	Top banner image manipulation and common functions
//	Dependencies:
//	Functions:		
//	Notes:
//	TODO:		
//	History:
//		
//**************************************************/
// random number generator 
function randInt (Num) {
 	var now = new Date();
 	var rand = Math.round(Num * Math.cos(now.getTime()));
 	if (rand < 0) rand = - rand; 
 	if (rand == 0) rand++;
  return rand;
}
// stuff to do once the page is loaded
function initClient(name) {

	var img = document.images["TopImg"];
	
	// get a handle to the image, and randomly pick one of 9 images
	img.src = img.src.slice(0, img.src.lastIndexOf("/")) + "/topbanner/" + name + randInt(7) + ".jpg";
	
}