$(document).ready(function() 
    { 
        $("#KSU_siteNav>div>ul>li").hover(
			function(){
				$(this).children("div.dropdown").css("display", "block");
			},
			function(){
				$(this).children("div.dropdown").css("display", "none");
			}
		);
    } 
); 

