s = new Site();
function eventos(){
	try {
	  document.execCommand("BackgroundImageCache", false, true);
	} catch(err) {}
	input_nome = document.getElementById('form_news').getElementsByTagName('input')[0];
	input_email = document.getElementById('form_news').getElementsByTagName('input')[1];
	input_email.onclick = function(){
		if(this.value == 'Email'){
			this.value = '';
		}
	}
	input_email.onblur = function(){
		if(this.value == ''){
			this.value = 'Email';
		}
	}
	input_nome.onclick = function(){
		if(this.value == 'Nome'){
			this.value = '';
		}
	}
	input_nome.onblur = function(){
		if(this.value == ''){
			this.value = 'Nome';
		}
	}
	document.getElementById('form_news').onsubmit = function(){
		if(input_nome.value == '' || input_nome.value == 'Nome' || input_email.value == '' || input_email.value == 'Email'){
			alert('Preencha os campos corretamente!');
			return false;
		}
	}
	
	document.getElementById('catalogo_virtual').onclick = function(){
		alert('Catálogo disponível em breve!');
		return false;
	}
	var so = new SWFObject("http://www.centerluz.com.br/animacoes/anima_index.swf?new2", "topo_index", 780, 551, "8", "");
	so.addVariable("pagina", 'empresa');
	so.addParam("wmode", "transparent");
	so.write("topo_index");
}
s.addListener(window, "load", eventos);
