/*
*	The Underground Header Script v1.2
*		written by Travis Willis (www.torabu.net)
*
*	date created: 1 August 2008
*	last modified: 24 August 2008
*/

//set a random variable that will determine what images is outputted
var rand = Math.round(Math.random()*0); //Multiplication number = number of last entry in header_array

var header_array = new Array();

//Set the header variables
header_array[0] = "http://www.inuyashajourneychat.com/_img/headers/inuyasha.png";

//Set HTML code into a variable
var header_pick="<img src='" + header_array[rand] + "' title='TIJ - An Online Anime RolePlay Community' />";

//Output header
document.write(header_pick);