$(document).ready(function(){
				//Verticaal
				$('.boxgrid.omhoog').hover(function(){
					$(".cover", this).stop().animate({top:'-260px'},{queue:false,duration:500});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
				});
				$('.boxgrid.omlaag').hover(function(){
					$(".cover", this).stop().animate({top:'260px'},{queue:false,duration:500});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
				});
				//Horizontaal
				$('.boxgrid.rechts').hover(function(){
					$(".cover", this).stop().animate({left:'325px'},{queue:false,duration:500});
				}, function() {
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
				});
				$('.boxgrid.links').hover(function(){
					$(".cover", this).stop().animate({left:'-325px'},{queue:false,duration:500});
				}, function() {
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
				});
				//Diagonaal
				$('.boxgrid.rechterhoek').hover(function(){
					$(".cover", this).stop().animate({top:'260px', left:'325px'},{queue:false,duration:500});
				}, function() {
					$(".cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
				});
				$('.boxgrid.linkerhoek').hover(function(){
					$(".cover", this).stop().animate({top:'260px', left:'-325px'},{queue:false,duration:500});
				}, function() {
					$(".cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
				});
				//Balk
				$('.boxgrid.balk').hover(function(){
					$(".cover", this).stop().animate({top:'-90px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
				});
			});
