
	function desapear(){
		$("#principale").css('visibility', 'hidden');
		$("#select_vousetes").css('visibility', 'hidden');
	}
	function introFinish(){
		$("#principale").addClass('claque-sup');
		$("#select_vousetes").css('visibility', 'visible');

	}
	function introLoaded(){
		$("#principale").css('visibility', 'visible');
	}

        function sizedocument(){

           var sizedocument = jQuery(document).height();
           //alert(sizedocument);
           return sizedocument;
           
            }

            function moveMenu(rubrique)
		{

			$('.button').hover(
			      function() {
					var monId = $(this).attr("id");

					$(this).addClass('hover');
					$(this).stop().css({top:'10px'});
			      		changeMenu(monId);
			      },
			      function(){
			      	$(this).removeClass('hover');
			      	//var monId = $(this).attr('id');
			      	$(this).stop().css({top:'81px'});
			  		 changeMenu(rubrique);
			      }
				);

		}




/*---------------------------------------------*/
	jQuery.fn.delay = function(time,func){
		this.each(function(){
			setTimeout(func,time);
		});

		return this;
	};
/*---------------------------------------------*/

/*---------------------------------------------*/

$(document).ready(function(){

                $(".slide_menu_primary").click(function()
        {
             $(".slide_menu_sec").css('display', 'none');
	     $(this).find("li.slide_menu_sec").fadeIn(500);


	});

});
/*---------------------------------------------*/


