/*#############################################################################

FILE:	chagneClass.js

	Copyright © 2005 Navitaire Inc. All rights reserved.

	This source code is (i) proprietary to and a trade secret of Navitaire Inc.
	and (ii) protected by copyright law and international treaties.
	Unauthorized disclosure, reproduction, distribution or alteration of this
	source code, or any portion of it, may result in severe civil and criminal
	penalties and will be prosecuted to the maximum extent possible under
	the law.

	www.navitaire.com

DESCRIPTION:

	Contains javascript to change an elements class.

#############################################################################*/
	
/*###############################
#
# Function: changeClass()
#
# Parameter: 	'id' 		- id defined in css
#		'newClass'	- class defined in css
#
# Description: Changes the class of an element
#
#
#################################*/	
	
	function changeClass(id, newClass)
	{
		if (document.getElementById)
		{
			identity=document.getElementById(id);
			identity.className=newClass;
		}
	}