function calculaPedidoLojinha(){
	var valor_total = 0;
	jQuery(".itemLoja").each(function(){		
		var qtde = 1;
		if (this.checked){ 		
			if (jQuery("#qtde_"+this.value).attr("value")!=null){
				qtde = Math.abs(jQuery("#qtde_"+this.value).attr("value"));
				jQuery("#qtde_"+this.value).attr("value",qtde);
			}
			else{
				jQuery("#qtde_"+this.value).attr("value","1");
				qtde = 1;
			}
			valor_total = valor_total + (qtde * jQuery("#valor_"+this.value).attr("value"));
		}
		else{
			jQuery("#qtde_"+this.value).attr("value","");
		}		
	});
	jQuery("#preco_total").html(formatNumber(valor_total,2,'.',',','R$ ','','',''));						    
}
