/*************************************************
* Author: Will Steinmetz
* Date: 01/12/09
* Name: transcribing4you.js
*
* Description: This script defines methods that are
*  used for the Transcribing4You website
*************************************************/

function NavOver(id) {
	document.getElementById(id).className = 'navItemOver';
}

function NavOut(id) {
	document.getElementById(id).className = 'navItem';
}

function Navigate(action) {
	window.location = 'index.php?action=' + action;
}
