$(document).ready(function(){

//Kartice dostupnosti Kawasaki
$('.boxgrid.dostupnost').hover(function(){
$(".cover", this).stop().animate({top:'40px'},{queue:false,duration:200});
}, function() {
$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:500});
});

//Kartice video i brošure
$('.boxgrid.videobrosure').hover(function(){
$(".cover", this).stop().animate({top:'40px'},{queue:false,duration:250});
}, function() {
$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:600});
});

//Kartice foto i pozadine
$('.boxgrid.foto').hover(function(){
$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:150});
}, function() {
$(".cover", this).stop().animate({top:'-150px'},{queue:false,duration:500});
});

});
