	<!-- This script for Netscape 3, IE4
			
	if ( document.images) {  /*if browser can handle it, pre-load images*/
			
	<!-- needs JavaScript 1.1

	var Home_on = new Image();
	var Home_off = new Image();
	var Abou_on = new Image();
	var Abou_off = new Image();
	var Cont_on = new Image();
	var Cont_off = new Image();
	var Rate_on = new Image();
	var Rate_off = new Image();
	var Appl_on = new Image();
	var Appl_off = new Image();
	var Faqs_on = new Image();
	var Faqs_off = new Image();
	var Calc_on = new Image();
	var Calc_off = new Image();
	var Glos_on = new Image();
	var Glos_off = new Image();
	var Link_on = new Image();
	var Link_off = new Image();
	var Agen_on = new Image();
	var Agen_off = new Image();
	}

	function preLoad() {
	//if ( document.images) {
	//if browser can handle it, pre-load images

	Home_on.src = "/images/Home_on.gif";
	Home_off.src = "/images/Home_off.gif";
	Abou_on.src = "/images/About_on.gif";
	Abou_off.src = "/images/About_off.gif";
	Cont_on.src = "/images/Contact_on.gif";
	Cont_off.src = "/images/Contact_off.gif";
	Calc_on.src = "/images/Calculator_on.gif";
	Calc_off.src = "/images/Calculator_off.gif";
	Appl_on.src = "/images/Application_on.gif";
	Appl_off.src = "/images/Application_off.gif";
	Glos_on.src = "/images/Glossary_on.gif";
	Glos_off.src = "/images/Glossary_off.gif";
	Link_on.src = "/images/Links_on.gif";
	Link_off.src = "/images/Links_off.gif";
	Agen_on.src = "/images/Agents_on.gif";
	Agen_off.src = "/images/Agents_off.gif";
	Faqs_on.src = "/images/Faqs_on.gif";
	Faqs_off.src = "/images/Faqs_off.gif";
	Rate_on.src = "/images/Rates_on.gif";
	Rate_off.src = "/images/Rates_off.gif";
	//}
	}

	function rollon( img ) { /*swap in highlighted images*/
	imga = eval(img + "_on.src");
	if ( (document.images) && (imga)) {
	document.images[img].src = eval( img + "_on.src");
	}
	}

	function rolloff( img ) { /*swap in unhighlighted images*/
	imgb = eval(img + "_off.src");
	if ( (document.images) && (imgb)) {
	document.images[img].src = eval( img + "_off.src" );
	}
	}
	// -->