$(document).ready(function(){
// USER MENU
	$("#userlink").toggle(function() {
		$("#userhead").animate({"height": "102px", "top": "-74px"}, 300);
		$("#userbutton").hide();
		$("#userbuttondown").show();
	},
	function() {
		$("#userhead").animate({"height": "25px", "top": "3px"}, 300);
		$("#userbutton").show();
		$("#userbuttondown").hide();
	});

// FORUM MENU
	$("#forumlink").toggle(function() {
		$("#forumhead").animate({"height": "202px", "top": "-174px"}, 600);
		$("#forumbutton").hide();
		$("#forumbuttondown").show();
	},
	function() {
		$("#forumhead").animate({"height": "25px",  "top": "3px"}, 600);
		$("#forumbutton").show();
		$("#forumbuttondown").hide();
	});
	
// SEARCH MENU
	$("#searchlink").toggle(function() {
		$("#searchhead").animate({"height": "102px", "top": "-74px"}, 300);
		$("#searchbutton").hide();
		$("#searchbuttondown").show();
	},
	function() {
		$("#searchhead").animate({"height": "25px",  "top": "3px"}, 300);
		$("#searchbutton").show();
		$("#searchbuttondown").hide();
	});
	
// LOGIN MENU
	$("#loginlink").toggle(function() {
		$("#loginhead").animate({"height": "102px", "top": "-74px"}, 300);
		$("#loginbutton").hide();
		$("#loginbuttondown").show();
	},
	function() {
		$("#loginhead").animate({"height": "25px",  "top": "3px"}, 300);
		$("#loginbutton").show();
		$("#loginbuttondown").hide();
	});
	
});
