function navOV(div){
	switch(div)
	{
	case "about":
		$("#floatTxt").css("padding-top", "35px");
	  var text = "APEX Power Services Corporation offers specialized energy consulting services to commercial and industrial consumers of electricity.";
	  break;    
	case "services":
		$("#floatTxt").css("padding-top", "35px");
	  var text = "Many unique APEX services are available to assist clients with the numerous, and often-times complex, options and opportunities.";
	  break;
	case "clients":
		$("#floatTxt").css("padding-top", "35px");
	  var text = "Assisting commercial and industrial energy consumers that produce electricity as an adjunct to their business operations to optimize financial benefits.";
	  break;
	case "deregulation":
		$("#floatTxt").css("padding-top", "25px");
	  var text = "The deregulation of the transportation, natural gas, and telecommunications industries leaves the electric utility industry as one of the last regulated monopoly providers.";
	  break;
	case "contact":
		$("#floatTxt").css("padding-top", "35px");
	  var text = "You may contact us or request a NO OBLIGATION, preliminary assessment of potential energy cost reduction opportunities.";
	  break;
	default:
		$("#floatTxt").css("padding-top", "35px");
	  var text = "APEX guarantees to provide the highest level of customer service available in the energy consulting/services industry.";
	}
	
	$("#floatTxt").html(text);
	
	if(jQuery.browser.msie == true){ // is IE
		if(jQuery.browser.version < 7){
			$("#"+div).css("background-image", "url(images/navButOV.png)");
		}else{
			$("#"+div).css("background-image", "url(images/navButOV.png)");
		}
		$("#floatWin").show();
	} else {
		$("#"+div).css("background-image", "url(images/navButOV.png)");
		$("#floatWin").fadeIn("slow");
	}
	
	
	
}

function navOut(div){
	if(jQuery.browser.msie == true){ // is IE
		if(jQuery.browser.version < 7){
			$("#"+div).css("background-image", "url(images/navBut.png)");
		}else{
			$("#"+div).css("background-image", "url(images/navBut.png)");
		}
	} else {
		$("#"+div).css("background-image", "url(images/navBut.png)");
	}

}