function slider_home() {
  $(".photo .slider").hover(function() {
        $(this).stop().animate({top:'500px'},{queue:false,duration:300}).addClass("ouvert");
    }, function() {
        $(this).stop().animate({top:'620px'},{queue:false,duration:300}).removeClass("ouvert");
    });
  $(".video .slider").hover(function() {
        $(this).stop().animate({top:'500px'},{queue:false,duration:300}).addClass("ouvert");
    }, function() {
        $(this).stop().animate({top:'620px'},{queue:false,duration:300}).removeClass("ouvert");
    });

}

$(document).ready(function() {
	slider_home('.slider');
});


