$(document).ready(function()
{
	var list_elements = ".info_tienda_item";
	var multiplier = .8;
	var time  = 150;
	var timer = 0;
	$(list_elements).each(function(i)
	{
		$(this).css("margin-left","75px");
		timer = (timer*multiplier + time);
		$(this).animate({ marginLeft: "0" }, timer);
		$(this).animate({ marginLeft: "15px" }, timer);
		$(this).animate({ marginLeft: "0" }, timer);
	});
	$(list_elements).each(function(i)
	{
		$(this).hover(
		function(){	$(this).animate({ marginLeft: "10px" }, 150);	},
		function(){	$(this).animate({ marginLeft: "0" }, 150);	},
		function(){	$(this).animate({ marginLeft: "10px" }, 150);	}
		);
	});
});








