﻿$(document).ready(function(){
		
		//Partial Sliding (Only show some of background)
		$('.screengrid.peek').hover(function(){
			$(".cover", this).stop().animate({top:'60px'},{queue:false,duration:350});
		}, function() {
			$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:350});
		});
		
	});