	function showHide(id)
	{
		var obj = document.getElementById(id);
		if (obj.style.display == 'none')
			obj.style.display = 'block';
		else
			obj.style.display = 'none';
	}

	$(function() {
		/*
		$("#lavamenu").lavaLamp({
			fx: "backout",
			speed: 700,
			click: function(event, menuItem) {
				return false;
			}
		});
		*/

		$("#nav-logo").find("a").each(function () {
			$(this).mouseover(function () {
				$(this).addClass("logohover");
			});

			$(this).mouseout(function () {
				$(this).removeClass("logohover");
			});
		});
	});
