function bloquearClicDerecho(){
		$(document).ready(function(){

			$(document).bind("contextmenu",function(e){
				return false;
			});
	
	});
}
function iniciarSeccionComun(){
function mainmenu(){
$(" #MENU UL ").css({display: "none"}); // Opera Fix
$(" #MENU LI").hover(function(){
		$(this).find('UL:first').css({visibility: "visible",display: "none"}).show(400);
		},function(){
		$(this).find('UL:first').css({visibility: "hidden"});
		});
}

 $(document).ready(function(){
	mainmenu();
});
	bloquearClicDerecho();
}
function iniciarSeccionContacto(){
	iniciarSeccionComun();
	$(document).ready(function(){
			var elementClick = "#contacto";
			var destination = $(elementClick).offset().top;
			$("body").animate({ scrollTop: destination}, 500 );
			document.getElementById('nombre').focus();
	});
}

function enviarmsj()
{
	var majax= nuevoAjax();
	var nombre, correo, empresa, telefono, ciudad, estado, pais, depto, mensaje;
	nombre=document.getElementById('nombre').value;
	correo=document.getElementById('correo').value;
	empresa=document.getElementById('empresa').value;
	telefono=document.getElementById('telefono').value;
	ciudad=document.getElementById('ciudad').value;
	estado=document.getElementById('estado').value;
	pais=document.getElementById('pais').value;
	depto=document.getElementById('depto').value;
	mensaje=document.getElementById('mensaje').value;

	majax.open("POST", "../contacto.php", true);
	majax.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	majax.send("nombre="+nombre+"&correo="+correo+"&empresa="+empresa+"&telefono="+telefono+"&ciudad="+ciudad+"&estado="+estado+"&pais="+pais+"&depto="+depto+"&mensaje="+mensaje);
	majax.onreadystatechange=function()
	{
		if (majax.readyState!=4)
		{
		   document.getElementById('respuesta').innerHTML="<IMG SRC='../images/loading.gif'/>";	

		}
		if (majax.readyState==4)
		{
			document.getElementById('respuesta').innerHTML=majax.responseText;

			//Pedidos.innerHTML=ajax.responseText;
		}
	}
}
