// JavaScript Document

//EFFET DE SLIDING BOX
	$('.s_box_div_insect').hover(function(){
		$(".s_box", this).stop().animate({top:'-130px'},{queue:false,duration:160});
	}, function() {
		$(".s_box", this).stop().animate({top:'-160px'},{queue:false,duration:160});
		});

