/* show hide div in equipment page */
function show(id)
	{
		var men="equipment"+id;
		document.getElementById(men).style.display='block';
	}
function hide(id)
	{
		var men="equipment"+id;
		document.getElementById(men).style.display='none';
	}
function show01()
	{
		show(0);hide(1);hide(2);hide(3);hide(4);dispimg01();
	}
function show02()
	{
		show(1);hide(0);hide(2);hide(3);hide(4);dispimg10();
	}
function show03()
	{
		show(2);hide(1);hide(0);hide(3);hide(4);dispimg20();
	}
function show04()
	{
		show(3);hide(1);hide(2);hide(0);hide(4);dispimg25();
	}
function show05()
	{
		show(4);hide(1);hide(2);hide(3);hide(0);dispimg29();
	}
