/*
 * CATS
 * Career Page
 *
 * Copyright (C) 2007 JobDig, Inc.
 * Copyright (C) 2005 - 2007 Cognizo Technologies, Inc.
 *
 *
 * The Original Code is "CATS Standard Edition".
 *
 * The Initial Developer of the Original Code is Cognizo Technologies, Inc.
 * Portions created by the Initial Developer are Copyright (C) 2005 - 2007
 * (or from the year in which this file was created to the year 2007) by
 * Cognizo Technologies, Inc. All Rights Reserved.
 *
 *
 * $Id: careersPage.js 3554 2007-11-11 22:17:26Z will $
 */

function buttonMouseOver(txt, tf){
	var newImage;
	var obj = document.getElementById(txt);
	var helpObj = document.getElementById('buttonHelpText');
	if (tf) newImage = eval(txt + 'On');
	else newImage = eval(txt + 'Off');

	if (obj){
		obj.src = newImage.src;
		if (obj = document.getElementById(txt + 'Text')){
			if (tf) helpObj.innerHTML = obj.innerHTML;
			else helpObj.innerHTML = '&nbsp;';
		}
	}
	return false;
}

if(!animateBackgroundColor){
	var animateBackgroundColor='#ffffff';
}
