/********************************************************/
/*     Function for show/hide expanding menu			*/
/********************************************************/

function display (category) {
	var whichcategory = document.getElementById(category);
	if (whichcategory.className=="show") {
		whichcategory.className="hide";
	} else {
		whichcategory.className="show";
	}
}

function showIt (category) {
	var whichcategory = document.getElementById(category);
		whichcategory.className="show";
}

function hideIt (category) {
	var whichcategory = document.getElementById(category);
		whichcategory.className="hide";
}


/********************************************************/
/*     Function for show/hide recreation items			*/
/********************************************************/

function display1 (category) {
	var whichcategory = document.getElementById(category);
	if (whichcategory.className=="show1") {
		whichcategory.className="hide1";
	} else {
		whichcategory.className="show1";
	}
}

function showIt1 (category) {
	var whichcategory = document.getElementById(category);
		whichcategory.className="show1";
}

function hideIt1 (category) {
	var whichcategory = document.getElementById(category);
		whichcategory.className="hide1";
}
