$(document).ready(function(){
	$('.panel.slide').hover(function(){
		$(".cover", this).stop().animate({left:'240px'},{queue:false,duration:400});
		}, function() {
		$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:400});
		});
	});
	

$(document).ready(function(){
	$('.prodBox.slide').hover(function(){
		$(".cover", this).stop().animate({left:'150px'},{queue:false,duration:500});
		}, function() {
		$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:500});
		});
	});

