//script for mouseover Starts Here function doDocumentOnMouseOver() { var eSrc = window.event.srcElement; if (eSrc.className == "leftbar"){ document.all(eSrc.id).style.background= "#997200" eSrc = eSrc.id eSrc = eSrc.substr(2, eSrc.length-2); eSrc = "a" + eSrc document.all(eSrc).style.background= "#997200" document.all(eSrc).style.color= "#FFFFFF" document.all(eSrc).style.fontWeight= "bold" } if (eSrc.className == "alink"){ document.all(eSrc.id).style.background= "#997200" document.all(eSrc.id).style.color= "#FFFFFF" document.all(eSrc.id).style.fontWeight= "bold" eSrc = eSrc.id eSrc = eSrc.substr(1, eSrc.length-1); eSrc = "td" + eSrc document.all(eSrc).style.background= "#997200" } } function doDocumentOnMouseOut() { var eSrc = window.event.srcElement ; if (eSrc.className == "leftbar"){ document.all(eSrc.id).style.background= "#EFEFDE" eSrc = eSrc.id eSrc = eSrc.substr(2, eSrc.length-2); eSrc = "a" + eSrc document.all(eSrc).style.background= "#EFEFDE" document.all(eSrc).style.color= "#000000" document.all(eSrc).style.fontWeight= "normal" } if (eSrc.className == "alink"){ document.all(eSrc.id).style.background= "#EFEFDE" document.all(eSrc.id).style.color= "#000000" document.all(eSrc.id).style.fontWeight= "normal" eSrc = eSrc.id eSrc = eSrc.substr(1, eSrc.length-1); eSrc = "td" + eSrc document.all(eSrc).style.background= "#EFEFDE" } } document.onmouseover = doDocumentOnMouseOver ; document.onmouseout = doDocumentOnMouseOut ; //script for mouseover ends here //Detect Browser Scripte Starts Here var browserName = navigator.appName; if (browserName == "Microsoft Internet Explorer") { document.write (""); } else { document.write (""); } //Detect Browser Script Ends Here //Script For Mouse Over Starts Here // Script For Mouse Here Ends Here