/* author: Ian Kelley - www.designbyian.com */
var ie=(document.getElementById && document.all)? true : false;
var ns=(document.getElementById && navigator.appName.indexOf("Netscape")>=0 )? true: false;
var hack; var op=0; var np=0; var opi;
function hoverInfo(soup,fiveManTent) {
	soup.style.display = 'none'; soup.style.cursor = 'default'; fiveManTent.style.display = 'block'; 
}
function moreInfo(soup,off) {
	if (off == "1") { 
		//if(ie) { soup.style.filter='alpha(opacity=0)'; op = 0; clearInterval (opi); }
	soup.style.visibility = 'hidden'; soup.style.display = 'none';
	}
	else {
		//if (ie) { hack = soup; opi = setInterval ('fade()', 35); }
	hack = soup; hack.style.visibility = 'visible'; hack.style.display = 'block';
	}
}
function fade() {
	if (op < 100) {
	op+=5;
		if (ie) { hack.style.filter="alpha(opacity="+op+")"; }
	} else { 
	clearInterval (opi); if (ie) hack.style.filter = "fontWeight='normal'";
	}
}
function over(soup,bgCol,off) {
	if (off == "1") { soup.style.backgroundColor = bgCol; soup.style.padding ='2px'; soup.style.textIndent ='13px';	}
	else {
	soup.style.backgroundColor = bgCol; soup.style.padding ='3px'; soup.style.textIndent ='0px';
	}
}
