// JavaScript Document
function newsHover(s)
{
	var td = s;
	var d = td.getElementsByTagName("div").item(0);
	
	td.className = "newsHover";
	d.className = "newsHover";
	s.style.cursor = 'hand';
}

function newsNormal(s)
{
	var td = s;
	var d = td.getElementsByTagName("div").item(0);
	
	td.className = "newsNormal";
	d.className = "newsNormal";
}

function newsLink()
{
	window.location="index.html";
}

function aboutHover(s)
{
	var td = s;
	var d = td.getElementsByTagName("div").item(0);
	
	td.className = "aboutHover";
	d.className = "aboutHover";
}

function aboutNormal(s)
{
	var td = s;
	var d = td.getElementsByTagName("div").item(0);
	
	td.className = "aboutNormal";
	d.className = "aboutNormal";
}

function aboutLink()
{
	window.location="about.html";
}

function contactHover(s)
{
	var td = s;
	var d = td.getElementsByTagName("div").item(0);
	
	td.className = "contactHover";
	d.className = "contactHover";
}

function contactNormal(s)
{
	var td = s;
	var d = td.getElementsByTagName("div").item(0);
	
	td.className = "contactNormal";
	d.className = "contactNormal";
}

function contactLink()
{
	window.location="contact.html";
}
