// Airlounge code for rollover images
function MouseOver(imgName) {
	if(document.images) {
		// get the image type
		suffixType = imgName.src.substring(imgName.src.lastIndexOf("."),imgName.src.length);
		
		// swap to new image
		if (imgName.src.indexOf("_hov") == -1) {
			imgName.src = imgName.src.substring(0,(imgName.src.indexOf(suffixType))) + "_hov" + suffixType;
		}
	}
}

function MouseOut(imgName) {
	if(document.images) {
		// get the image type
		suffixType = imgName.src.substring(imgName.src.lastIndexOf("."),imgName.src.length);
		
		// swap image back to original
		if (imgName.src.indexOf("_hov") != -1) {
			imgName.src = imgName.src.substring(0,(imgName.src.indexOf("_hov"))) + suffixType;
		}
	}
}
// code for Jump menu
function jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
// code to open browser window
function popWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

