(function($) {
$(function(){

	$('#top_nav').find('> li').hover(function(){
		$(this).find('ul')
		.removeClass('noJS')
		.stop(true, true).slideToggle('slow');
	});
	
});

})(jQuery)
