﻿			$(document).ready(function(){
				
				$('.boxgrid.slidedown').hover(function(){
					$(".cover", this).stop().animate({top:'-260px'},{queue:false,duration:600});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:600});
				});
				
				$('.boxgrid.peek').hover(function(){
					$(".cover", this).stop().animate({top:'90px'},{queue:false,duration:360});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:360});
			});		
			});