/* ---------------------------------------------------------- */
/*			Image download									  */
/* ---------------------------------------------------------- */

Image1 = new Image(1096, 1334);
Image2 = new Image(845, 1050);

function download(){
	Image1.src = "../images/backgrounds/bg-wrapper.jpg";
	Image2.src = "../images/backgrounds/bg-main.jpg";
}

/* ------------------------------------------------------------ */
/*     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";
}


