// JavaScript Document
var ob;
var status;
var type;
function displaySub(subid)
{
	if(typeof ob == "undefined")
	{
		document.getElementById(subid).style.display="block";
		status="open";
	}
	
	if((ob == subid) && (status=="open"))
	{
		type=1;
	}
	
	if((ob == subid) && (status=="close"))
	{
		type=2;
	}
	
	if(typeof ob != "undefined" && ob != subid)
	{
		type=3;
	}
	// 1 : same menu and open , 2 : same menu and close , 3: new menu
	switch(type)
	{
		case 1 :
				  document.getElementById(subid).style.display="none";
				  status="close";
				  break;
		case 2 :document.getElementById(subid).style.display="block";
				  status="open";
				  break;
		case 3 :document.getElementById(ob).style.display="none";
				  document.getElementById(subid).style.display="block";
				 status="open";
				  break;
	}
	
	ob=subid;
}
// برمجة المروه لبرمجة و تصميم المواقع 
// www.almarwa.net
// شبكة دروس العرب 