// JavaScript Document
//Copyright 2008 All right and privledges reserved by DF Webs 

//Used to remove the div on mouseout
function undisplayDiv(divname2){
document.getElementById(divname2).className = "NoShow";
}

//Used to display the div on mouseover
function displayDiv(divname){
document.getElementById(divname).className = "Show";
}

function ieFix()
{
	/*Internet Explorer Has a Problem with the z-index which lets the drop downs work properly. This fixes the problem in most cases.
	If there is something that is appearing over your drop down menus even though it is below the actual menus you must
	give it an id, in this case the id is content and then give it a z-index of -1. Then for each of the drop down divs use a z-index  	greater then 0*/
	var browser=navigator.appName;
	
	if(browser == "Microsoft Internet Explorer")
	{
	document.getElementById('content').style.zIndex = '-1';
	document.getElementById('drop1').style.zIndex = '10';
	document.getElementById('drop2').style.zIndex = '11';
	document.getElementById('drop3').style.zIndex = '12';
	document.getElementById('drop4').style.zIndex = '13';
	}
	else
	{
	}

}