$(document).ready(function(){

	$('#primary-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');
		}
	});

	 $('#primary-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');

		}
	});


});


