// MouseOn 
 				homeon = new Image(48, 26);
				homeon.src = "images/n_home_on.jpg";  
 				companyon = new Image(79, 26);
				companyon.src = "images/n_company_on.jpg";  
				productson = new Image(86, 26);
				productson.src = "images/n_products_on.jpg";
				serviceson = new Image(80, 26);
				serviceson.src = "images/n_services_on.jpg";
				saleson = new Image(60, 26);
				saleson.src = "images/n_sales_on.jpg";
				supporton = new Image(76, 26);
				supporton.src = "images/n_support_on.jpg";
				mediaon = new Image(65, 26);
				mediaon.src = "images/n_media_on.jpg";
 				noncoilon = new Image(198, 36);
				noncoilon.src = "images/n_non_coil_on.jpg";  
 				coiloveron = new Image(198, 36);
				coiloveron.src = "images/n_coil_over_on.jpg";  
				oeon = new Image(198, 36);
				oeon.src = "images/n_oe_on.jpg";
				bypasson = new Image(198, 36);
				bypasson.src = "images/n_bypass_on.jpg";
				airon = new Image(198, 25);
				airon.src = "images/n_air_on.jpg";
				hydraulicon = new Image(198, 25);
				hydraulicon.src = "images/n_hydraulic_on.jpg";
				coilon = new Image(198, 25);
				coilon.src = "images/n_coil_on.jpg";
				hydraon = new Image(198, 25);
				hydraon.src = "images/n_hydra_on.jpg";
				accessorieson = new Image(198, 25);
				accessorieson.src = "images/n_accessories_on.jpg";
				detailson = new Image(231, 30);
				detailson.src = "images/b_details_on.jpg";
				applicationson = new Image(231, 30);
				applicationson.src = "images/b_applications_on.jpg";
				chooseon = new Image(231, 30);
				chooseon.src = "images/b_choose_on.jpg";
				
				
			// MouseOff
			    homeoff = new Image(48, 26);
				homeoff.src = "images/n_home.jpg";  
 				companyoff = new Image(79, 26);
				companyoff.src = "images/n_company.jpg";  
				productsoff = new Image(86, 26);
				productsoff.src = "images/n_products.jpg";
				servicesoff = new Image(80, 26);
				servicesoff.src = "images/n_services.jpg";
				salesoff = new Image(60, 26);
				salesoff.src = "images/n_sales.jpg";
				supportoff = new Image(76, 26);
				supportoff.src = "images/n_support.jpg";
				mediaoff = new Image(65, 26);
				mediaoff.src = "images/n_media.jpg";
				noncoiloff = new Image(198, 36);
				noncoiloff.src = "images/n_non_coil.jpg";  
 				coiloveroff = new Image(198, 36);
				coiloveroff.src = "images/n_coil_over.jpg";  
				oeoff = new Image(198, 36);
				oeoff.src = "images/n_oe.jpg";
				bypassoff = new Image(198, 36);
				bypassoff.src = "images/n_bypass.jpg";
				airoff = new Image(198, 25);
				airoff.src = "images/n_air.jpg";
				hydraulicoff = new Image(198, 25);
				hydraulicoff.src = "images/n_hydraulic.jpg";
				coiloff = new Image(198, 25);
				coiloff.src = "images/n_coil.jpg";
				hydraoff = new Image(198, 25);
				hydraoff.src = "images/n_hydra.jpg";
				accessoriesoff = new Image(198, 25);
				accessoriesoff.src = "images/n_accessories.jpg";
				detailsoff = new Image(231, 30);
				detailsoff.src = "images/b_details.jpg";
				applicationsoff = new Image(231, 30);
				applicationsoff.src = "images/b_applications.jpg";
				chooseoff = new Image(231, 30);
				chooseoff.src = "images/b_choose.jpg";
				
				

				
				// image-swapping functions
function imgOn(imgName) {	
  if (document.getElementById) {
    document.getElementById(imgName).src = eval(imgName + "on.src");

  }
}

function imgOff(imgName) {
  if (document.getElementById) {
    document.getElementById(imgName).src = eval(imgName + "off.src");
  }
}
// swap images
function di(id,name)
{
  if (document.images)
    document.images[id].src=eval(name+".src");   
}


function sm_jump(objSelect){
if (objSelect.selectedIndex<=0) return false;
var objOpt = objSelect.options[objSelect.selectedIndex];
window.location.href=objOpt.value;
}

