$j(document).ready(function(){
	
	$j('#menu li').hover(function(){
		$j(this).find('div').show();
		$j(this).find('a:first').css({'backgroundColor':'#e9e9e9','color':'#009470'});
	},function(){
		$j(this).find('div').hide();
		$j(this).find('a:first').css({'backgroundColor':'','color':''});
	});
});
