//Rollover 400 Project Button Script
//previous version 040507
//current version 010509
//copyright © 2009 Hal Barwood / Finite Arts

//..............................................................................
document.write

if (document.images)
{
	contact_contact_tab_select = new Image;

	tox_contact_tab_browse = new Image;
	tox_contact_tab_hilite = new Image;
	tox_contact_tab_select = new Image;

	games_contact_tab_browse = new Image;
	games_contact_tab_hilite = new Image;
	games_contact_tab_select = new Image;


	bio_contact_tab_browse = new Image;
	bio_contact_tab_hilite = new Image;
	bio_contact_tab_select = new Image;

	skills_contact_tab_browse = new Image;
	skills_contact_tab_hilite = new Image;
	skills_contact_tab_select = new Image;

	credits_contact_tab_browse = new Image;
	credits_contact_tab_hilite = new Image;
	credits_contact_tab_select = new Image;

	home_contact_tab_browse = new Image;
	home_contact_tab_hilite = new Image;
	home_contact_tab_select = new Image;

	contact_contact_tab_select.src = "../Images/contact_tab_select.jpg";

	games_contact_tab_browse.src = "../Images/games_tab_browse.jpg";
	games_contact_tab_hilite.src = "../Images/games_tab_hilite.jpg";
	games_contact_tab_select.src = "../Images/games_tab_select.jpg";

	tox_contact_tab_browse.src = "../Images/tox_tab_browse.jpg";
	tox_contact_tab_hilite.src = "../Images/tox_tab_hilite.jpg";
	tox_contact_tab_select.src = "../Images/tox_tab_select.jpg";

	bio_contact_tab_browse.src = "../Images/bio_tab_browse.jpg";
	bio_contact_tab_hilite.src = "../Images/bio_tab_hilite.jpg";
	bio_contact_tab_select.src = "../Images/bio_tab_select.jpg";

	skills_contact_tab_browse.src = "../Images/skills_tab_browse.jpg";
	skills_contact_tab_hilite.src = "../Images/skills_tab_hilite.jpg";
	skills_contact_tab_select.src = "../Images/skills_tab_select.jpg";

	credits_contact_tab_browse.src = "../Images/credits_tab_browse.jpg";
	credits_contact_tab_hilite.src = "../Images/credits_tab_hilite.jpg";
	credits_contact_tab_select.src = "../Images/credits_tab_select.jpg";

	home_contact_tab_browse.src = "../Images/home_tab_browse.jpg";
	home_contact_tab_hilite.src = "../Images/home_tab_hilite.jpg";
	home_contact_tab_select.src = "../Images/home_tab_select.jpg";
}


function changeObject (obName, obSource)
{
	if (document.images)
	{
		document[obName].src = obSource;
	}
}

