// JavaScript Document
menu_status = new Array();
function showHide(theid,url,val,aid)
{
	
	    if (document.getElementById)
		{
			var switch_id = document.getElementById(theid);
			var alink = document.getElementById(aid);
			testholder = document.getElementById('subMenu1');
			tt2 = testholder.getElementsByTagName('div');
			
			for(i=0;i<tt2.length;i++)
			{
				
				if(tt2[i].id != ''  && tt2[i].className == 'show' && tt2[i].id != theid)
				{
					tt2[i].className = 'hide';
				
				}
				
			}
		
				/*
				if(menu_status[theid] != 'show') {
				   switch_id.className = 'show';
				   menu_status[theid] = 'show';
				}else{
				   switch_id.className = 'hide';
				   menu_status[theid] = 'hide';
				}
				*/
				//alert(switch_id.className);
				
				switch_id.className = (switch_id.className == 'hide')?'show':'hide';
				
				if(aid!='' && switch_id.className == 'show')
				{
					alink.className ='selectedMenu';
				}
				else if(aid!= '' && switch_id.className == 'hide')
				{
					alink.className ='subMenu';
				}
				
				
				if(switch_id.className == 'show' && val != '')
				{
					//window.location = url+"?category_id="+val; //previous code
					window.location = url;
				}
		
   		 }
		

}