// JavaScript Document

<!-- GOOGLE ANALYTICS -->

var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

<!-- FIM GOOGLE ANALYTICS -->


<!-- MENU DE PLANTAS -->

function HabilitaItem(obj) {
	if( obj.style.display == 'none' )
		obj.style.display = '';
	else
		obj.style.display = 'none';
	
	/*var x = parseInt(obj.id.substr(3,4));
	for(i=0; i.lenght < 5; i++) {
		alert(document.getElementById("div" + i ));
		if( i != x )
			document.getElementById("div" + i ).style.display = 'nome';
	}*/
	
    /*document.all.div1.style.display =  'none';
	document.all.div2.style.display =  'none';
	document.all.div3.style.display =  'none';
	document.all.div4.style.display =  'none';
	document.all.div5.style.display =  'none';
    objeto.style.display = '';*/
}

<!-- TROCA DE PLANTAS -->
function trocaPlanta(strPlanta, strTitle) {
	img = document.getElementById("imgPlanta");
	img.src = "";
	img.src = "imagens/plantas/"+ strPlanta +".gif";
    img.parentNode.title = strTitle;
    img.parentNode.href = "imagens/plantas/zoom/" + strPlanta + "-zoom.jpg";
}

<!-- TROCA DE FOTOS -->
function trocaFoto(strFoto) {
	img = document.getElementById("imgFoto");
	img.src = "imagens/lazer/"+ strFoto +".jpg";
}


<!-- FORMULARIO -->
function inFocus(el) {
    if(el.value == "Nome")
        el.value = "";
    if(el.value == "E-mail")
        el.value = "";
    if(el.value == "Telefone")
        el.value = "";
}

function outFocus(el) {
    if(el.value == "") {
        if(el.name == "txtNome")
            el.value = "Nome";
        if(el.name == "txtEmail")
            el.value = "E-mail";
        if(el.name == "txtTelefone")
            el.value = "Telefone";
    }
}
