function navigateToTopic(object)
{
	var page = object.options[object.selectedIndex].value;
     object.style.cursor = "wait";
     window.open(page, "_self");
}

var oBody, isSubdir, vSubDir
function initialize(){
	idBody = document.getElementsByTagName('body')[0].getAttribute("rel");
//	vSelectedMenu = document.getElementById("wrapper").parentNode.getAttribute("rel")
	isSubdir = (idBody == 'root') ? true : false;
	vSubDir = "";
	if(!isSubdir){
		vSubDir = "../";
	}
}
function butOver(x){
	var oID = document.getElementById(x)
	oID.style.backgroundImage=eval('"url(' + vSubDir + 'images/signup_rollover.gif)\";');
}
function butOut(x){
	var oID = document.getElementById(x)
	oID.style.backgroundImage=eval('"url(' + vSubDir + 'images/signup_default.gif)\";');
}

var d = new Date(); //write in the footer for the copyright year.
//document.write(d.getFullYear());
//NOTE:  this script is placed in the files with an [if IE] specification.  Damned IE.

function rtMartPicSpacing(){
	$("img.rt_marg_imgs:first").css({"margin-top":"15px"});
}