// JavaScript Document $(document).ready( function() { showSubLevel($(".navbar .select")); $(".navbar li").each( function() { // $(this).find("li:first").find("a").addClass("white") } ); //$("#h_con .inner ul li:first"); } ); //function s_getLight(obj){obj.style.backgroundImage="url(img/s_imgbl.gif)";obj.style.cursor="pointer"} // //function s_getDefault(obj){obj.style.backgroundImage="url(img/s_imgb.gif)";} function showSubLevel(Obj){ //Obj.className="hover"; if(isfirst) { $(".navbar li").each( function() { // $(this).find("li:first").find("a").removeClass("white") } ); } isfirst = true; $(Obj).addClass("hover"); $("#bindex").find("ul").hide(); $("#babout").find("ul").hide(); $("#bservice").find("ul").hide(); $("#bcase").find("ul").hide(); $("#binfo").find("ul").hide(); $("#bbook").find("ul").hide(); $("#bclient").find("ul").hide(); $("#bteam").find("ul").hide(); $("#bcontact").find("ul").hide(); $(Obj).find("ul").show(); } function hideSubLevel(Obj){ $("#bindex").find("ul").hide(); $("#babout").find("ul").hide(); $("#bservice").find("ul").hide(); $("#bcase").find("ul").hide(); $("#binfo").find("ul").hide(); $("#bbook").find("ul").hide(); $("#bclient").find("ul").hide(); $("#bteam").find("ul").hide(); $("#bcontact").find("ul").hide(); $(Obj).find("ul").show(); //$(Obj).addClass("hover"); //Obj.className=""; } var isfirst = false;