$(document).ready(function(){   
		
	$(".top_menu ul").hide();
	$(".top_menu").append('<img src="images/arrow.png" class="arrow" />');
	

	
	$(".top_menu").hover (
		function() {
			$(this).children('img.arrow').hide();
			$(this).children('ul').stop('true','true');
			$(this).children('h3').css({backgroundPosition: '20px -9999px'});
			$(this).css({backgroundPosition: '0 -9999px'});
			$(this).children('ul').slideDown();
		},
		function() {
			$(this).stop('false','true');
			$(this).children('ul').slideUp("1000",function() {
				$(this).parent().css({backgroundPosition: 'left bottom'});
				$(this).parent().children('img.arrow').show();
			});
		}
	);

	$(".top_menu .arrow").hover(function() {
		$('.top_menu').trigger('hover');
	});
	
});
