;(function($) { 
	$(function(){
		$("#calculoPresu a").click(function(){
			pageTracker._trackEvent('llamada-accion', 'calcular', findLastLocation())
		})

		$("#curriculum a").click(function(){
			pageTracker._trackEvent('empleo', 'inscribirse')
		})

		$(".entrar_recuperar").click(function(){
			pageTracker._trackEvent('recuperar-presupuesto', 'entrar', 'recuperar-presupuesto')
		})

		$(".contenedor_nuevo_presupuesto a").click(function(){
			pageTracker._trackEvent('llamada-accion', 'calcular', 'recuperar-presupuesto')
		})

		$("h6 a").click(function(){
			pageTracker._trackEvent('llamada-accion', 'calcula tu presupuesto', findLastLocation())
		})
	})
})(jQuery);

function findLastLocation(){
	var str = window.location.href
	var lastSlash = str.lastIndexOf("/") + 1;
	var endLocation = str.lastIndexOf(".");

	str = str.substr(lastSlash, endLocation - lastSlash)
	
	return str;
}

