$(function(){
//menu
var obja =  $("#menu").find("a");
var objd =  $("#secmenu").find("ul");

obja.mouseover(function(){
    var objs =  obja.index($(this));
    objd.hide();
	var objset =$("#menu").find("a").eq(objs).offset().left;
	objd.css("left",objset);
    objd.eq(objs).show();
});

objd.hover(function(){
   $(this).show();
   
},function(){
   
   $(this).hide();
   
});

//nav Ìæ»»ÎÄ×Ö
	$("#nav dd").find("h2").each(function(){
	newval = $(this).html().replace("Solar Water Heater","Solar Water");  
	$(this).html(newval)	  
	})


 
})

