// JavaScript Document
$(document).ready(function(){
	$("#botaoInicio").hover(function(){
		$(this).css({"z-index" : "5", "margin-top" : "0px"});
		$("#botaoCardapio").css({"z-index" : "4", "margin-top" : "-5px"});
		$("#botaoReservas").css({"z-index" : "3", "margin-top" : "-5px"});
		$("#botaoContato").css({"z-index" : "2", "margin-top" : "-5px"});
	}, function(){
		$("#botaoInicio").css({"z-index" : "5", "margin-top" : "0px"});
		$("#botaoCardapio").css({"z-index" : "4", "margin-top" : "0px"});
		$("#botaoReservas").css({"z-index" : "3", "margin-top" : "0px"});
		$("#botaoContato").css({"z-index" : "2", "margin-top" : "0px"});
	});
	
	$("#botaoCardapio").hover(function(){
		$(this).css({"z-index" : "5", "margin-top" : "0px"});
		$("#botaoInicio").css({"z-index" : "4", "margin-top" : "-5px"});
		$("#botaoReservas").css({"z-index" : "3", "margin-top" : "-5px"});
		$("#botaoContato").css({"z-index" : "2", "margin-top" : "-5px"});
	}, function(){
		$("#botaoInicio").css({"z-index" : "5", "margin-top" : "0px"});
		$("#botaoCardapio").css({"z-index" : "4", "margin-top" : "0px"});
		$("#botaoReservas").css({"z-index" : "3", "margin-top" : "0px"});
		$("#botaoContato").css({"z-index" : "2", "margin-top" : "0px"});
	});
	
	$("#botaoReservas").hover(function(){
		$(this).css({"z-index" : "5", "margin-top" : "0px"});
		$("#botaoInicio").css({"z-index" : "4", "margin-top" : "-5px"});
		$("#botaoCardapio").css({"z-index" : "3", "margin-top" : "-5px"});
		$("#botaoContato").css({"z-index" : "2", "margin-top" : "-5px"});
	}, function(){
		$("#botaoInicio").css({"z-index" : "5", "margin-top" : "0px"});
		$("#botaoCardapio").css({"z-index" : "4", "margin-top" : "0px"});
		$("#botaoReservas").css({"z-index" : "3", "margin-top" : "0px"});
		$("#botaoContato").css({"z-index" : "2", "margin-top" : "0px"});
	});
	
	$("#botaoContato").hover(function(){
		$(this).css({"z-index" : "5", "margin-top" : "0px"});
		$("#botaoInicio").css({"z-index" : "4", "margin-top" : "-5px"});
		$("#botaoCardapio").css({"z-index" : "3", "margin-top" : "-5px"});
		$("#botaoReservas").css({"z-index" : "2", "margin-top" : "-5px"});
	}, function(){
		$("#botaoInicio").css({"z-index" : "5", "margin-top" : "0px"});
		$("#botaoCardapio").css({"z-index" : "4", "margin-top" : "0px"});
		$("#botaoReservas").css({"z-index" : "3", "margin-top" : "0px"});
		$("#botaoContato").css({"z-index" : "2", "margin-top" : "0px"});
	});
});
