// -------------------------------------------------------------------------------------
// File				:	dhtml.js
// Author			:	Gareth Jones (garjones@microsoft.com)
// Purpose			:	DHTML functionality for eCarswell
// Last Updated		:	31st October 2002
// -------------------------------------------------------------------------------------
// Copyright (C) 2002 Microsoft Corporation. All rights reserved.
// -------------------------------------------------------------------------------------

function hoverMe(oEl,sFCol,sBCol){
	oEl.style.backgroundColor=sFCol;
	oEl.children(0).style.color=sBCol;
}

function hoverMeImg(oEl, sImg){
	oEl.src='/lib/img/'+sImg+'.gif';
}

function navigateMe(sURL){
	document.location.href=sURL;
}
