	$(document).ready(
		function() {
	        $("div.topnav ul li").hover(  
	            function() {  
	                $(this).children().filter('ul').addClass("on");  
	            },  
	            function() {  
	        $(this).children().filter('ul').removeClass("on");  
	            });    
		}
	);  
	
