$('#topnav li').children('ul').hide().end();

$('#topnav li').hover(function() {
		// mouseover
	$(this).find('> ul').stop(true, true).fadeIn(250);
	}, function() {
		// mouseout
		$(this).find('> ul').stop(true, true).fadeOut(200); 		
});

$('#company #topnav li ul').hover(function() {
		// mouseover
	$('#company #topnav .company > a').css('background-image', 'none');
	}, function() {
		// mouseout
		$('#company .company > a').css({
			'background-image': 'url(http://alectos:8888/wp-content/themes/alectos/images/arrow.jpg)',
			'background-position': 'center bottom',
			'background-repeat': 'no-repeat'
			});
	
});
