// JavaScript Document

$(document).ready(function(){
	
	var count = 7; // item orders
	
	for(var i=1; i<=count; i++){
		
		$("#box"+i).hover(function(){
			$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
		}, function() {
			$(".cover", this).stop().animate({top:'95px'},{queue:false,duration:160});
		});
		
	}

});
