window.onload = function()	{	//	Run onload

	if(!document.getElementById) return false;			//	Quit if browser doesn't support DOM scripting
	
	if(navigator.appName == "Microsoft Internet Explorer")	{	//	IE
	
		//	Hide all contact details
		var details = document.getElementsByTagName("div")
		for(var i=0; i<details.length; i++)	{		
			if(details[i].className=='employee')	{			
				details[i].style.setAttribute('cssText', 'background:transparent;margin-bottom:-28px;', 0);
				var dl = details[i].childNodes[4];	//	"Details" definition list is node 7
				dl.style.setAttribute('cssText','display:none !important;',0);
			}
		}
		var toggles = document.getElementsByTagName("a");
		var test = 'false';
		for(i=0; i<toggles.length; i++)	{
			if(toggles[i].className=='toggle m' || toggles[i].className=='toggle f')	{
				toggles[i].onclick = function()	{
					var arrow = this.childNodes[0];
					if(arrow.getAttribute("src","http://192.168.1.96/vhfa/images/employee_toggle_off.gif"))	{
						arrow.setAttribute("src","http://192.168.1.96/vhfa/images/employee_toggle_on.gif");
												
						if(this.className=='toggle m')	{
							this.parentNode.style.setAttribute('cssText','background:#d0dcd8 url(../../images/man.gif) 18px 22px no-repeat;margin-bottom:0;');
						}
						else	{
							this.parentNode.style.setAttribute('cssText','background:#d0dcd8 url(../../images/woman.gif) 18px 22px no-repeat;margin-bottom:0;');
						}
						
						this.parentNode.childNodes[4].style.setAttribute("cssText","display:block;");
						return false;
					}
				}
			}
		}
	}	//	END IE
	else	{	//	Non-IE
		//	Hide all contact details
		var details = document.getElementsByTagName("div")
		for(var i=0; i<details.length; i++)	{		
			if(details[i].getAttribute("class","employee"))	{
				details[i].setAttribute("style","background:transparent;margin-bottom:-28px;");
				var dl = details[i].childNodes[7];	//	"Details" definition list is node 7
				dl.setAttribute("style","display:none !important;");
			}
		}
		var toggles = document.getElementsByTagName("a");
		for(i=0; i<toggles.length; i++)	{
			if(toggles[i].getAttribute("class")=="toggle m" || toggles[i].getAttribute("class")=="toggle f")	{
				toggles[i].onclick = function()	{
					var arrow = this.childNodes[0];
					if(arrow.getAttribute("src")=="../../images/employee_toggle_off.gif")	{
						arrow.setAttribute("src","../../images/employee_toggle_on.gif");
						if(this.getAttribute("class")==="toggle m")	{
							this.parentNode.setAttribute("style","background:#d0dcd8 url(../../images/man.gif) 18px 22px no-repeat;margin-bottom:0;");
						}
						else	{
							this.parentNode.setAttribute("style","background:#d0dcd8 url(../../images/woman.gif) 16px 30px no-repeat;margin-bottom:0;");
						}
						this.parentNode.childNodes[7].setAttribute("style","display:block;");
						return false;
					}
					else	{
						arrow.setAttribute("src","../../images/employee_toggle_off.gif");
						this.parentNode.childNodes[7].setAttribute("style","display:none;");
						this.parentNode.setAttribute("style","background:transparent;margin-bottom:-28px;");
						return false;
					}
				}
			}
		}
	}	//	END non-IE
}