$(document).ready(function($){
    $("#mainmenu li").hover(
        function(){ $("ul", this).fadeIn("fast"); }, 
        function() { } 
    );
    if (document.all) {
        $("#mainmenu li").hoverClass ("sfHover");
    }
});

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });
};  


  function showhide(id){
    if(document.getElementById){
      if(document.getElementById(id).style.display == "none"){
        document.getElementById(id).style.display = "block";
      }else{
        document.getElementById("id1").style.display = "block";
        document.getElementById(id).style.display = "none";
      }
    }
  }
