/* =========v==SLIDE FUNCTION==v===JQ==DOM========== */	

$(function(){   // JQuery onLoad function
document.getElementById('menutab').onclick = show_menu; // my DOM call
});

function hide_menu() { 
 menu = document.getElementById("wrapper");
 if(menu.style.left == "-238px", menu.style.width == "123%"){
  menu.style.left = "0";
  menu.style.width =  "98%";
 } else {
  menu.style.left = "-238px";
  menu.style.width = "123%";
 }
}

function show_menu() {  // DOM calls
 menu = document.getElementById("wrapper");
 if(menu.style.left == "0", menu.style.width == "98%"){
  menu.style.left = "-238px";
  menu.style.width =  "123%";
 } else {
  menu.style.left = "0%";
  menu.style.width = "98%";
 }
}
 
/* =========v==MENU FUNCTION==v=====JQuery========== */	
	
	$(document).ready(function(){
		$("dd:not(:first)").hide();
		$("dt a").click(function(){
			$("dd:visible").slideUp("show");
			$(this).parent().next().slideDown("show");
			return false;
		});
	});

window.onload = function() {

};

