$j(document).ready(function(){

	//Caixas Clicáveis
	$j('#this_cat .cat_item').click(function(){
		var wordUrl = $j(this).find('a').attr('href');
		document.location.href = wordUrl;
	});
	
	//Simular Cotação
	var strResultado = "";
	$j('#box_simule #bt_calcular').click(function(){
		
		strResultado=""+($j('#item_value').val() / $j('#qtd_parc').val());
		
		//Se tiver casas decimais
		if (strResultado.split(".").length>1){
			if (strResultado.split(".")[1].length > 2){
				strInteiro = strResultado.split(".")[0];
				strDecimal = strResultado.split(".")[1].substring(0, 2);
				strResultado = strInteiro + "," + strDecimal;
			}
		} else {
			if (strResultado == "Infinity" || strResultado == "NaN" || strResultado == "0" ||  strResultado == "") return false;
			else strResultado += ",00";
		}

		//Exibir resultado
		$j('#resultado strong').html('R$'+strResultado);
		$j('#formulario').fadeOut('400');
		$j('#resultado').fadeIn('400');
		$j('#resultado_obs').slideDown('400');
	});
	
	$j('#box_simule #nova_simulacao').click(function(){
		$j('#resultado').fadeOut('400');
		$j('#formulario').fadeIn('400');
		$j('#resultado_obs').slideUp('400');
	});
});
