var array_index = ["Armor", "Accessories", "Weaponry"];


function catopen(varid, pos){
	closeall();
	var element = document.getElementById(varid+"_cat");
	element.style.display = "block";
	element.style.top =  ( 10+pos)+"px";
	
	var tab = document.getElementById(varid);
	tab.href = "javascript:catclose('a"+varid+"', "+pos+");";
	tab.setAttribute("class", "prodnav_down");
}
function catclose(varid, pos){
	
	var element = document.getElementById(varid+"_cat");
	element.style.display = "none";
	
	var tab = document.getElementById(varid);
	tab.href = "javascript:catopen('a"+varid+"',"+pos+");";
	tab.setAttribute("class", "prodnav_up");
}


function closeall(){
	
	for( var counter = 0; counter< array_index.length; counter++){
		var tab = document.getElementById("a"+array_index[counter]);
		var div = document.getElementById(array_index[counter] + "_cat");
		
		val = tab.href.split(',');
		
		value = val[1].split(')');
		
		value = value[0];
		
		tab.href = "javascript:catopen('"+array_index[counter]+"',"+value+");";
		tab.setAttribute("class", "prodnav_up");
		div.style.display = "none";
	}

}
