$(document).ready(function(){ 
  
$(".card img").hover(function() {

$(this).animate({"margin-top": "-=22px", "margin-bottom" : "+=22px"}, "fast")
},
function() {
$(this).animate({"margin-top": "+=22px", "margin-bottom" : "-=22px"}, "fast")
})

$('.screenshot_slider').anythingSlider({easing: "easeInOutExpo", autoPlay: false, buildNavigation: false });



});
