
document.write('<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>');
document.write('<script type="text/javascript" src="js/jquery.lavalamp.1.3.3-min.js"></script>');

var query = new Object();
easing = query['e'] || 'Expo';

function loadEasing(e) {
	location.href = location.pathname+'?e='+e;
}


jQuery(document).ready(function() {
			$("#lavaLampHomeRodape").lavaLamp({
				fx: 'easeInOut'+easing,
				speed: 1000,
				returnHome: false,
				homeLeft: 0,
				homeTop: 45,
				homeWidth: 293,
				homeHeight:10
			});
            $("#lavaLampHome").lavaLamp({
				fx: 'easeInOut'+easing,
				speed: 1000,
				returnHome: false,
				homeLeft: 0,
				homeTop: -25,
				homeWidth:540,
				homeHeight:10
			});


});

function clr_newsletter(a, b){
	if(a=='Digite seu e-mail para receber novidades.'){
		document.getElementById(b).value="";
	}
	return true;
}

function pre_newsletter(a, b){
	if(document.getElementById(b).value==""){
		document.getElementById(b).value="Digite seu e-mail para receber novidades.";
	}
	return true;
}

function alerta(){
	alert('Conteudo do site bloqueado!');
	return false;
}

function rejeitaTecla(oEvent){
	var oEvent = oEvent ? oEvent : window.event;
	var tecla = (oEvent.keyCode) ? oEvent.keyCode : oEvent.which;
		if(tecla == 17 || tecla == 44|| tecla == 106){
			alerta();
		}
}

document.onkeypress = rejeitaTecla;
document.onkeydown = rejeitaTecla;
document.oncontextmenu = alerta;

function disableSelection(target){
	if (typeof target.onselectstart!="undefined") //IE route
		target.onselectstart=function(){return false}
	else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
		target.style.MozUserSelect="none"
	else //All other route (ie: Opera)
		target.onmousedown=function(){return false}
	target.style.cursor = "default"
}

