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

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

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

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