		$(function() {
			$('.boxgrid.slideright').hover(function(){
				$(".cover", this).stop().animate({left:'325px'},{queue:false,duration:300});
				$(this).find(".more").hide();
				
				//Create link
				//if($(this).find(".urldest").attr('href')!='undefined'){
				//	 $(this).click(function() {
						//document.location.href = $(this).find(".urldest").attr('href');
						//alert('Ej aktiv');
						//return false;
				//	 });
				//}


			}, function() {
				$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
				$(this).find(".more").show();
			});
		});
