// Image Rollover & Preload
if (document.images) {

// ----------Main Navigation-----------// 
homeoff = new Image();
homeoff.src = "/templates/images/btn_home-off.gif";
homeon =  new Image();
homeon.src = "/templates/images/btn_home-on.gif";

productsoff = new Image();
productsoff.src = "/templates/images/btn_products-off.gif";
productson =  new Image();
productson.src = "/templates/images/btn_products-on.gif";

newsoff = new Image();
newsoff.src = "/templates/images/btn_news-off.gif";
newson =  new Image();
newson.src = "/templates/images/btn_news-on.gif";

supportoff = new Image();
supportoff.src = "/templates/images/btn_support-off.gif";
supporton =  new Image();
supporton.src = "/templates/images/btn_support-on.gif";

contactoff = new Image();
contactoff.src = "/templates/images/btn_contact-off.gif";
contacton =  new Image();
contacton.src = "/templates/images/btn_contact-on.gif";

whereoff = new Image();
whereoff.src = "/templates/images/btn_where-off.gif";
whereon =  new Image();
whereon.src = "/templates/images/btn_where-on.gif";

cluboff = new Image();
cluboff.src = "/templates/images/btn_club-off.gif";
clubon =  new Image();
clubon.src = "/templates/images/btn_club-on.gif";

partsoff = new Image();
partsoff.src = "/templates/images/btn_parts-off.gif";
partson =  new Image();
partson.src = "/templates/images/btn_parts-on.gif";

cooleroff = new Image();
cooleroff.src = "/templates/images/btn_cooler-off.gif";
cooleron =  new Image();
cooleron.src = "/templates/images/btn_cooler-on.gif";

chassisoff = new Image();
chassisoff.src = "/templates/images/btn_chassis-off.gif";
chassison =  new Image();
chassison.src = "/templates/images/btn_chassis-on.gif";

poweroff = new Image();
poweroff.src = "/templates/images/btn_power-off.gif";
poweron =  new Image();
poweron.src = "/templates/images/btn_power-on.gif";

storageoff = new Image();
storageoff.src = "/templates/images/btn_storage-off.gif";
storageon =  new Image();
storageon.src = "/templates/images/btn_storage-on.gif";

fanoff = new Image();
fanoff.src = "/templates/images/btn_fan-off.gif";
fanon =  new Image();
fanon.src = "/templates/images/btn_fan-on.gif";

accessoff = new Image();
accessoff.src = "/templates/images/btn_access-off.gif";
accesson =  new Image();
accesson.src = "/templates/images/btn_access-on.gif";

off = new Image();
off.src = "/templates/images/btn_-off.gif";
on =  new Image();
on.src = "/templates/images/btn_-on.gif";

off = new Image();
off.src = "/templates/images/btn_-off.gif";
on =  new Image();
on.src = "/templates/images/btn_-on.gif";

off = new Image();
off.src = "/templates/images/btn_-off.gif";
on =  new Image();
on.src = "/templates/images/btn_-on.gif";

off = new Image();
off.src = "/templates/images/btn_-off.gif";
on =  new Image();
on.src = "/templates/images/btn_-on.gif";


// -----------Sub Navigation------------//


}

function imageon(imgName)
{
	if (document.images)
		document[imgName].src = eval(imgName + 'on.src');
}

function imageoff(imgName)
{
	if (document.images)
		document[imgName].src = eval(imgName + 'off.src');

}
