// Global Functions
// Copyright 2009 Thirteen07.com. All rights reserved.

adimage=new Array();
adimage[0]='images/ad/h-01.jpg';
adimage[1]='images/ad/h-02.jpg';
adimage[2]='images/ad/h-03.jpg';
adimage[3]='images/ad/h-04.jpg';
adimage[4]='images/ad/h-05.jpg';
adimage[5]='images/ad/h-06.jpg';
adimage[6]='images/ad/h-07.jpg';
adimage[7]='images/ad/h-08.jpg';

function rotatead()
{
	document.getElementById("rotatingad").setAttribute("src", adimage[Math.round(Math.random()*7)])
}

function unload_board(currentb)
{
	document.getElementById("boardlineup").style.display="block";
	document.getElementById(currentb).style.position="absolute";
	document.getElementById(currentb).style.top="-2000px";
}

function load_board(selectedb)
{
	document.getElementById("boardlineup").style.display="none";
	document.getElementById(selectedb).style.position="relative";
	document.getElementById(selectedb).style.top="0";
}