$(document).ready(function(){
        /* menu rollover */
	$('.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', '/sfSympalBossSite2Plugin/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', '/sfSympalBossSite2Plugin/images/global/arrow_down.png');

		}
	});






/* RESIZE DU FOOTER */

//	positionResize();


//		$(window).resize(function resizing() {
//			positionResize();
//		});



		function positionResize(){

                       if($(window).height() > ($('.page').height()+$('.footer').height())){
                   
                           var docHeight = $(window).height() - $('.footer').height() -5;
                            $('.global').css({'height':docHeight});
                       }

		}




});

