$(document).ready( function(){
	
	$('img.remove').mouseover(function() { $(this).animate({ paddingRight:'13px' },100); });
	$('img.remove').mouseout(function() { $(this).animate({ paddingRight:'10px' },100); });
	
});

/* REMOVE UM ITEM DO CARRINHO DE COMPRAS */
function remove(tipo,id)
{
	location.href = '/index.php/'+$('input#lang').val()+'/carrinho/remover/'+tipo+'/'+id;
	return false;
}