$(function(){
	$(".mainTable .topMenu ul li").hover(function(){
		$(this).children('ul').stop(false,true).slideDown(500);
	},function(){
		$(this).children('ul').stop(false,true).slideUp(500);
	});

	$(".mainTable .topMenu ul li ul li").hover(function(){
		$(this).css({"backgroundColor": "white"});
		$(this).find('span').css({"color": "#CB0D0B"});
	},function(){
		$(this).css({"backgroundColor": "#CB0D0B"});
		$(this).find('span').css({"color": "white"});
	});
  
});
