
	$(document).ready(function() {
		var activeSearchLayer = false;
		
		var showSearchLayer = function() {
			$("#searchbox").addClass("active");
			$("#loginbox").removeAttr("class");
			$("#socialbookmarks").removeAttr("class");
		}
		
		var hideSearchLayer = function() {
			$("#searchbox").removeAttr("class");
		}
		
		
		$("#footer_navigation a.search").click(function(){
			if ($("#searchbox").attr("class") == "active") {
				hideSearchLayer();
			} else {
				showSearchLayer();
			}
			
			return false;
		});
	});



