document.write("<link rel='stylesheet' href='css/topMenu.css' type='text/css' />");
	
	$(document).ready(function(){	    
       $(".menuBar").mouseover(function(event){       
       if($(this).find("ul")[0])
        document.getElementById($(this).find("ul")[0].id).style.visibility = "visible";        
       });
       $(".menuBar").mouseout(function(event){
       if($(this).find("ul")[0])
        document.getElementById($(this).find("ul")[0].id).style.visibility = "hidden";       
       });
     });
