$(function() {
	$('#top_nav li').hover(function(){
		$(this).addClass('over');
		showTopMenu();
	}, function(){
		$(this).removeClass('over')
		setTimeout(function() {
			$('#top_nav li[class!=over]').find("ul.act").slideUp(400, function(){ $(this).removeClass("act") });
		}, 800); 
		
	});
	$('#top_nav li ul a').hover(function() {
		$(this).stop().animate({paddingLeft: '25px'}, 300, function(){
			$(this).css("background-position", "center left");
			$(this).css("background-repeat", "no-repeat");
			$(this).css("background-image", "url(/imgs_logistics_freight/top_menu_over_accent.gif)");
		});
	}, function() {
		$(this).css("background-image", "none");
		$(this).stop().animate({paddingLeft: '4px'}, 150, function(){
			
		});
	});
});
function showTopMenu() {
	if($('#top_nav li.over').find('ul').length && $('#top_nav li.over').find('ul.act').length) {
		setTimeout('showTopMenu()', 300);
	} else {
		$('#top_nav li.over').find('ul[class!=act]').addClass('act').slideDown(400);
	}
}
