// JavaScript Document
var BROWSER = "UNRECOGNIZED";

function browserDetect()
{
	var ie4 = document.all;
	var ns4 = document.layers;
	var ns6 = document.getElementById && !document.all; 
	
	BROWSER= ie4? "MSIE" : (ns4? "NS4": (ns6? "NS6" : "UNRECOGNIZED"));
	//alert("browsertype="+BROWSER);
}

function showNews(eid)
{
	MAXNEWS=12;
	saveid=0;
	for(i=1;i<=MAXNEWS;i++)
	{
		oid="news"+i;
		otherNews=document.getElementById(oid);
		if(otherNews && otherNews!=eid)
		{
			//alert(otherNews);
			/*
			otherNews.style.backgroundColor='';
			otherNews.style.color='#000000';
			//otherNews.style.border= 'none';
			//otherNews.style.paddingLeft= '';
			//otherNews.style.right= '';
			otherNews.style.fontWeight='';
			//otherNews.style.borderLeft='';*/
			otherNews.className='newsHeadline';
			document.getElementById('newsDetails'+i).style.display='none';
		}
		if(otherNews==eid)
			saveid=i;
	}
	
	/*
	//alert(saveid);
	//newBg =0x1166cc+saveid*(0x010202); //dull blue 0xdceeff
	newBg=0x1166cc;
	//newCol=0x663399-saveid*(0x020202); //dark blue
	try
	{
		//newCol="#"+newCol.toString(16);
		newBg="#"+newBg.toString(16);
	}
	catch(exc){}
	//eid.style.borderLeft= 'solid 10px ' + newBg;
	//eid.style.borderRight= 'solid 1px ' + newCol;
	//eid.style.borderBottom= 'solid 1px ' + newCol;
	//eid.style.borderTop= 'solid 1px ' + newCol;
	*/
	/*eid.style.fontWeight='bold';
	eid.style.backgroundColor=newBg;
	eid.style.color='#ffffff';*/
	eid.className='newsHeadline newsHeadlineOver';
	
	//eid.style.paddingLeft= '0px';
	//eid.style.right='6px';
	//eid.style.backgroundColor= newCol;
	
	document.getElementById('newsDetails'+saveid).style.display='block';
	
	//document.getElementById('newsDetails'+saveid).style.border='solid 1px ' + newCol;//#dceeee';
	//document.getElementById('hotNews').style.backgroundColor=newBg;
	//document.getElementById('hotNews').style.MozBorderRadius= '8px';
	//document.getElementById('hotnews').style.WebkitBorderRadius='5px';
	//document.getElementById('hotnews').style.WebkitBorderRadius='behavior:url(border-radius.htc)';
}

////////////	REVIEWS		////////////////

var reviewPage=1;

function reviewRollover(element)
{
	for(i=1;i<=4;i++)
	{
		
		tmpelement=document.getElementById('reviewTab'+i);
		if(tmpelement==element)
		{
			if(reviewPage==i)
				return;
			reviewPage=i;
			continue;
		}
		//tmpelement.style.backgroundColor='#ffffff';
		//tmpelement.style.color='#000000';
		tmpelement.className='reviewTab';
		
		tmpelement=document.getElementById('review'+i);
		tmpelement.style.display='none';
	}
	
	tmpelement=document.getElementById('review'+reviewPage);
	tmpelement.style.display='';
	//element.style.backgroundColor='#0099ff';
	//element.style.color='#ffffff';
	element.className='reviewTab reviewTabHover';
}

function reviewRollout(element)
{
	//element.style.backgroundColor='#ffffff';
	//element.style.color='#000000';
}
