$(document).ready(function(){

	$('.menu li').mouseenter(function() {
	
		if ($(this).children('ul').is(":hidden")) {
			$(this).children('ul').slideDown();	
		
		if ($(this).attr('class') != 'little')
				$(this).children('a').children('img').attr('src', '/sfSympalBossSiteModel1Plugin/images/global/arrow_up.png');
		}
	});

	 $('.menu li').mouseleave(function() {		
	 	

		 if ($(this).children('ul').is(":visible")) {
				$(this).children('ul').slideUp();	
				
				if ($(this).attr('class') != 'little')
					$(this).children('a').children('img').attr('src', '/sfSympalBossSiteModel1Plugin/images/global/arrow_down.png');
					
		}
	});
	

});


