var timer = null;

$(document).ready(function() {
	
	$(".header-menu").hide();
	
	$(".header-button").mouseenter(function() {
		$(".header-menu").hide();
		$("#"+this.id.replace("button", "menu")).show();
		$("#"+this.id).addClass("header-button-hover");
	});
	
	$(".header-menu").mouseenter(function() {
		$("#"+this.id).show();
		$("#"+this.id.replace("menu", "button")).addClass("header-button-hover");
	});
	
	$(".header-button, .header-menu").mouseleave(function() {
		$(".header-button").removeClass("header-button-hover");
		$(".header-menu").hide();
	});
	
	$("#message").hide();
	if(typeof _message !== "undefined") {
		$("#message").fadeIn(1000);
	}
	
});
