/* 

	+----------------------------------------------------------------+
	| Copyright (C) 2007, PaintTech America Inc.                     }
	| Designed by APD Technologies Inc.                              |
	| All Rights Reserved                                            |
	|                                                                |
	| RESTRICTED RIGHTS:                                             |
	|                                                                |
	| This  file  may have  been supplied  under a  license.  It may |
	| be used, disclosed, and/or copied only as permitted under such |
	| license agreement.  Any copy must contain the  above copyright |
	| notice and this restricted rights notice.  Use, copying, and / |
	| or  disclosure of   the file  is strictly  prohibited   unless |
	| otherwise provided in the license agreement.                   |
	+----------------------------------------------------------------+

	$Id: nav.js,v 1.1.1.1 2007/04/11 23:58:59 adsouza Exp $
	Author:		Anthony D'Souza
	Descrition:	Standard javascript functions

*/

function expand( s )
{

	var td	= s;
	var d	= td.getElementsByTagName( "div" ).item( 0 );

	td.className	= "menuHover";
	d.className		= "menuHover";

}

function collapse( s )
{

	var td	= s;
	var d	= td.getElementsByTagName( "div" ).item( 0 );

	td.className	= "menuNormal";
	d.className		= "menuNormal";

}

