/***********************************************************/
/** Author : Stephen Griffin, www.i-code.co.uk           **/
/**********************************************************/

function startmenu()
{
	backpacks.style.display = "none";
	bags.style.display = "none";
	hats.style.display = "none";
	pouches.style.display = "none";
	purses.style.display = "none";
	misc.style.display = "none";

}

function backpacksfunc()
{
	if(backpacks.style.display == "none")
	{
		startmenu();
		backpacks.style.display = "block";
	}
	else
	{
		startmenu();
	}
}

function bagsfunc()
{
	if(bags.style.display == "none")
	{
		startmenu();
		bags.style.display = "block";
	}
	else
	{
		startmenu();
	}
}

function hatsfunc()
{
	if(hats.style.display == "none")
	{
		startmenu();
		hats.style.display = "block";
	}
	else
	{
		startmenu();
	}
}

function pouchesfunc()
{
	if(pouches.style.display == "none")
	{
		startmenu();
		pouches.style.display = "block";
	}
	else
	{
		startmenu();
	}
}

function pursesfunc()
{
	if(purses.style.display == "none")
	{
		startmenu();
		purses.style.display = "block";
	}
	else
	{
		startmenu();
	}
}

function miscfunc()
{
	if(misc.style.display == "none")
	{
		startmenu();
		misc.style.display = "block";
	}
	else
	{
		startmenu();
	}
}

