$(function(){
		   /*menu to add*/
		   menu("#news");
		   menu("#fw");
		   menu("#about");
		   menu("#con");		   
		   /**/
		   function menu(idname){
			   var aid = idname+"_a";
			   //alert(aid);
			   $(idname).hover(function(){var o = $(this).offset();$("#head .bgbox4 a").removeClass("on1");$(".fc").hide();$(aid).css({left:o.left,top:o.top+20}).show();$(this).addClass("on1");},function(){$("#head .bgbox4 a").removeClass("on1");$(".fc").hide();});
               $(aid).hover(function(){$(this).show();$(idname).addClass("on1")},function(){$("#head .bgbox4 a").removeClass("on1");$(".fc").hide();});
		   }
		   });
