
var AdmotionPostTag = new function()
{
	//Evita que sejam criadas multiplas instancias;
	if(window.__PT_INITIATED) return;
	else window.__PT_INITIATED = true;
	//------------------------------

	//definição da ligação tag-página
	var paths = [];
	
	paths[0] = { postTag: "8451", path: "http://www.gafisa.com.br/", postTagType: "Agende Um Contato"};
	paths[1] = { postTag: "8452", path: "http://www.gafisa.com.br/", postTagType: "Chat Online"};	
	paths[2] = { postTag: "8454", path: "http://www.gafisa.com.br/", postTagType: "Envie um E-mail"};
	paths[3] = { postTag: "8455", path: "http://www.gafisa.com.br/", postTagType: "Ligamos para voce"};
	paths[4] = { postTag: "8630", path: "http://www.gafisa.com.br/", postTagType: "Agende Um Contato"};
	paths[5] = { postTag: "8630", path: "http://www.gafisa.com.br/", postTagType: "Chat Online"};	
	paths[6] = { postTag: "8630", path: "http://www.gafisa.com.br/", postTagType: "Envie um E-mail"};
	paths[7] = { postTag: "8630", path: "http://www.gafisa.com.br/", postTagType: "Ligamos para voce"};
	

	
//================NÃO ALTERAR========================
	var currentPath = document.location.href;
	
	this.Call = function(button)
	{
		for(i = 0; i < paths.length; i++)
		{
			if((currentPath.indexOf(paths[i].path) > -1) && paths[i].postTagType.toLowerCase() == button.toLowerCase())
			{
				new Image().src = "http://ia.nspmotion.com//ptag/?pt=" + paths[i].postTag + "&value=[number]&cvalues=[key|value,key|value]&r=" + Math.floor(Math.random() * 10000);
			}
		}
	}
}
//====================================================
AdmotionPostTag.Call("Pagina do Empreendimento");

