


$(document).ready(function() {	

	//Mouseover with animate Effect for minimenu list
  $('#DIV_MOVE #minimenu li.lien').click(function(){

    //Get the Anchor tag href under the LI
    window.location = $(this).children().attr('href');
  }).mouseover(function() {

    //animate the padding
    $(this).children().animate({paddingLeft:"20px"}, {queue:false, duration:300});
  }).mouseout(function() {
    
    //animate the padding
    $(this).children().animate({paddingLeft:"0"}, {queue:false, duration:300});
  });  
	
});


