$(document).ready(function() {

	//$("*").bind('copy', function(){return false;}); 

	$("#logo").mouseover(function(){
		$("#home").fadeIn("slow");
	});
	
	$("#logo").mouseout(function(){
		$("#home").fadeOut("slow");
	});
	
	$("#homehome").click(function(){
		location.href="http://www.autosummit.cl";
	});
});


function disableselect(e){
	return false
}
function reEnable(){
	return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
	document.onmousedown=disableselect
	document.onclick=reEnable
}
