/********************************************************/
/* home.js:		JavaScripts common only to home page.			*/
/*				By The Essential Connection					*/
/*				Copyright © 2005, Sheldon J. Potter			*/
/*				All Rights Reserved.							*/
/********************************************************/



/********************************************************/
// Status Bar Messages	
/********************************************************/

/* Local Navigation */

/* Other Navigation */
var res_msg = "Check out this additional resource (opens new window)";
//Preload into array


/********************************************************/
// Home Page Random Lead Photo Display Script Stuff
/********************************************************/

var images = new Array(
				"leadpic1",
				"leadpic2",
				"leadpic3",
				"leadpic4");
				
var path	= 	"images/"

function rand_pic()
{
	//alert("rand_pic:" + randNum(images.length));
	//alert("rand_pic:" + path + images[randNum(images.length)] + ".jpg");
	
	var picpath, html;
	
	picpath = path + images[randNum(images.length)] + ".jpg";
	html = "<IMG SRC=\"" + picpath + "\" ALT=\"Lead Image\" NAME=\"leadpic\" WIDTH=\"282\" HEIGHT=\"282\" HSPACE=\"0\" VSPACE=\"0\" BORDER=\"0\" ALIGN=\"right\">"
	//alert (html);
	
	return(html);
}

function randNum(num) 
{
	//alert("randNum");
	
	return(Math.floor(Math.random()*num));	                                  
}

