$(document).ready(function() {

	$("#dropdown ul").hide(); 

	$("#dropdown li").hover(
        function () {
		$(this).children("ul").show();
        },function(){
		$(this).children("ul").hide();
	});//hover

});// document ready

