$(document).ready(function (){
	
	$("#btn_entrar a").css("margin-left","-40px");
	$("#btn_entrar a").mouseover(entraMouse);
	$("#btn_entrar a").mouseout(saleMouse);
	$("#btn_entrar a").click(muestra);

	$("#btn_entrar1 a").css("margin-left","-40px");
	$("#btn_entrar1 a").mouseover(entraMouse);
	$("#btn_entrar1 a").mouseout(saleMouse);
	$("#btn_entrar1 a").click(muestra1);
})


//---------------- MENU ------------------//
function entraMouse()
{
	$(this).stop().animate({'marginLeft':'-2px'},200);
}
function saleMouse()
{
	$(this).stop().animate({'marginLeft':'-40px'},200);
}




function muestra(){
	parent.location.href="index_es.html";
}

function muestra1(){
	parent.location.href="index_en.html";
}

