

$(document).ready(function () {
 
	
	// animation texte banniere droite

/*  $("div#banniere p.anim").textAnimation({
    mode:"step",
	minsize:21,            //minimum font size[integer]
	maxsize:21,            //maximum font size[integer]
	upper:true,           //is upper step? [boolean]
     onStart:"mouseenter",  //event handler for start animation[Browse jQuery Events]
    onFinish:"mouseleave", //event handler for finish animation[Browse jQuery Events]
    fixed:"bottom",           //which fixed top or bottom ["top","bottom"]
    stuff:2.7,             //font stuff quantity[float]
    delay:150,             //delay time for animation between characters[integer] 
    interval:5000,            //interval time for between animation[integer]
    duration:1000,           //animation duration time[integer]
	repeat:true           //repeat animation[boolean]
}); */

	// amination menu top
 	$('#menutop li.elm').append('<div class="hover"><div class="left_hover"></div><div class="right_hover"></div></div>');

     $('#menutop li.elm').hover(
         
        //Mouseover, fadeIn the hidden hover class  
        function() {
        $(this).children('div.hover').stop(true, true).fadeIn('2500');	
     },
        //Mouseout, fadeOut the hover class
        function() {
         
            $(this).children('div.hover').stop(true, true).fadeOut('2500');	   
         
    }).click (function () {
     
        //Add selected class if user clicked on it
        // $(this).addClass('selected');
         
    });

	


});


