tab_01 = new Image();
tab_01.src = "/guide/images/tab_1_hover.gif";
tab_02 = new Image();
tab_02.src = "/guide/images/tab_2_hover.gif";
tab_03 = new Image();
tab_03.src = "/guide/images/tab_3_hover.gif";
tab_04 = new Image();
tab_04.src = "/guide/images/tab_4_hover.gif";
tab_05 = new Image();
tab_05.src = "/guide/images/tab_5_hover.gif";
tab_06 = new Image();
tab_06.src = "mages/tab_6_hover.gif";
tab_07 = new Image();
tab_07.src = "/guide/images/tab_7_hover.gif";
tab_08 = new Image();
tab_08.src = "/guide/images/tab_8_hover.gif";


var prev_click='tab_01';
var last='reminders_detail';
function swapimage(selection,event,last){
	 var offpath = '/guide/images/'+last+'_off.gif';
	 if (event=='over') {
	   	var selectionpath = '/guide/images/'+selection+'_hover.gif';
		   	}
	 else if (event=='click') {
	   	var selectionpath = '/guide/images/'+selection+'_on.gif';
		   	}
	 else {
	    var selectionpath = '/guide/images/'+selection+'_off.gif';
		    }

   document.images[last].src=offpath;
   document.images[selection].src=selectionpath;
   prev_click=selection;  

}

function togglestate(nav,item,event){
         var text_id=document.getElementById(item);
		 var last_item=document.getElementById(last);

if (event=='click') {
   		 last_item.style.display="none";
		 last=item;

		 text_id.style.display="block";

}
else if (event=='over') {
		 nav.className='facthover';
}
else {
		 nav.className='factoff';
}
}
function hide(item){
		var last_item=document.getElementById(last);
		last_item.style.display="none";
		item.className='factoff';

}
function highlight(item,event){
if (event=='over') {
		 item.className='facthover';
}
else {
	  	 item.className='factoff';
}
}
