<!--
var rootURL="http://www.pointsw.com";

//***** Precache all 'off' Images *****
var offImgArray = new Array();
//Main Menu
offImgArray[0] = new Image(44,13);
offImgArray[1] = new Image(67,15);
offImgArray[2] = new Image(38,10);
offImgArray[3] = new Image(46,13);
offImgArray[4] = new Image(81,13);

//Buttons
offImgArray[5] = new Image(92,17);
offImgArray[6] = new Image(50,17);

//***** Set Image Path for each 'off' button *****
//Main Menu
offImgArray[0].src = rootURL + "/images/m_home_off.gif";
offImgArray[1].src = rootURL + "/images/m_products_off.gif";
offImgArray[2].src = rootURL + "/images/m_news_off.gif";
offImgArray[3].src = rootURL + "/images/m_about_off.gif";
offImgArray[4].src = rootURL + "/images/m_contactus_off.gif";

//Buttons
offImgArray[5].src = rootURL + "/images/btn_more_details_off.gif";
offImgArray[6].src = rootURL + "/images/btn_back_off.gif";


//***** Precache all 'on' Images *****
var onImgArray = new Array();
//Main Menu
onImgArray[0] = new Image(44,13);
onImgArray[1] = new Image(67,15);
onImgArray[2] = new Image(38,10);
onImgArray[3] = new Image(46,13);
onImgArray[4] = new Image(81,13);

//Buttons
onImgArray[5] = new Image(92,17);
onImgArray[6] = new Image(50,17);

//***** Set Image Path for each 'off' button *****
//Main Menu
onImgArray[0].src = rootURL + "/images/m_home_on.gif";
onImgArray[1].src = rootURL + "/images/m_products_on.gif";
onImgArray[2].src = rootURL + "/images/m_news_on.gif";
onImgArray[3].src = rootURL + "/images/m_about_on.gif";
onImgArray[4].src = rootURL + "/images/m_contactus_on.gif";

//Buttons
onImgArray[5].src = rootURL + "/images/btn_more_details_on.gif";
onImgArray[6].src = rootURL + "/images/btn_back_on.gif";

//***** Functions to swap images *****
function imageOn(i, srcName) {
	eval("document."+srcName+".src = onImgArray[i].src;");	
	return true;
}
function imageOff(i, srcName) {
	eval("document."+srcName+".src = offImgArray[i].src;");
}


//***** Set Status Bar to Nothing *****
function setMsg(msg) {
	window.status = msg;
	return true;
}
// -->
