menu_status = new Array();

function showHide(theid, linkid){
    if (document.getElementById) {
		
		try{
			var switch_id = document.getElementById(theid);
			
			if(linkid.className=='lftmenu1 lftmenu1-down'){
				linkid.className='lftmenu1';
			}
			else{
				linkid.className='lftmenu1 lftmenu1-down';
			}
			
			if(menu_status[theid] != 'show') {
			   switch_id.className = 'show';
			   menu_status[theid] = 'show';
			}else{
			   switch_id.className = 'hide';
			   menu_status[theid] = 'hide';
			}
		}
		catch(exception){
		}
    }
}

function showHideResources(theid, linkid){
    if (document.getElementById) {
		
		try{
			var switch_id = document.getElementById(theid);
			
			if(menu_status[theid] != 'show') {
			   linkid.src = SKIN_URL+'images/arrow-down.gif';
			   switch_id.className = 'show';
			   menu_status[theid] = 'show';
			}else{
			   linkid.src = SKIN_URL+'images/arrow-right.gif';
			   switch_id.className = 'hide';
			   menu_status[theid] = 'hide';
			}
		}
		catch(exception){
		}
    }
}
