// JavaScript Document
$(document).ready(function(){
						   
	$('.producto').hover(function(){
		$(".cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:200});
	}, function() {
		$(".cover", this).stop().animate({top:'260px', left:'-325px'},{queue:false,duration:200});
	});
	$('.productoHome').hover(function(){
		$(".coverHome", this).stop().animate({left:'0px'},{queue:false,duration:200});
	}, function() {
		$(".coverHome", this).stop().animate({left:'-190px'},{queue:false,duration:200});
	});
});
