$(document).ready(function(){	
	$("#nav li").hover(function(){
			$(this).find(".nav_content").show();
            
            if (!$(this).find("a:first").hasClass('selected'))
                $(this).find("a:first").addClass('over');
		},
		function(){
			$(this).find(".nav_content").hide();
            
            if (!$(this).find("a:first").hasClass('selected'))
                $(this).find("a:first").removeClass('over');
	});	
});	
