/* author: Aleena -- aleena.bravehost.com.com */
var ie4=(document.all && !document.getElementById)? true : false;
var ie5=(document.getElementById && document.all)? true : false;

function over(soup,off)
{
	if (off == "1") 
	{
	soup.style.letterSpacing = 'normal';
	soup.style.textDecoration = 'none';
	soup.style.border = 'dotted 1px';
	soup.style.backgroundColor = '#DEDEBB';
	}

	else
	{
	soup.style.letterSpacing = '0.1em';
	soup.style.textDecoration = 'underline';
	soup.style.border = 'solid 1px';
	soup.style.backgroundColor = '#FF6000';
	
	if(ie4||ie5)
	soup.style.cursor = 'hand';
	else soup.style.cursor='pointer';
	}
}

