window.onload = function() {
	Nifty("div#titulo", "br big fixed-height");
	Nifty("div#anuncios", "top normal bottom big");
	Nifty("div.tituloInterno", "top");
	Nifty("div.textoInterno", "bottom big");
	Nifty("div#adicionais", "big");
	Nifty("div.maisInfo", "big");
	Nifty("div.tituloPost", "top");
	Nifty("div.textos");
	Nifty("div.rodapePost", "bottom big fixed-height");
	Nifty("div.tituloRodape", "top");
	Nifty("div.textosRodape");
	Nifty("div.rodapePostComentario", "bottom big");

	if (document.location.href.indexOf('teste.html') <= 0) {
		if (document.location.href.indexOf('.html') > 0) {
			document.location.href = document.location.href.split('.html').join('.cfm');
		} else if (document.location.href.indexOf('.htm') > 0) {
			document.location.href = document.location.href.split('.htm').join('.cfm');
		}
	}
}