$(document).ready( function($){

	var h = parseInt($('.shadow').height());
	$('.shadow').css("height", h-50);

	var h2 = parseInt($('.shadow2').height());
	$('.shadow2').css("height", h-50);
	
	
	$('.top_menu_dd ul li').mouseover(function(event)
    {
		$(this).find('ul').show();
		$(this).find('ul').find('a').css('color','#6D851B');
		$(this).find('ul').parent().css("background", "#50660d");
	});
	
	
	$('.top_menu_dd ul li').mouseout(function(event)
    {
		$(this).find('ul').hide();
		$(this).find('ul').parent().css("background", "#6d851b");
	});
	

});
