/********************************************************************************************************************
One of the superfluous visual affects, should be commented out once I button up the search engine.
********************************************************************************************************************/
function hoverLink(layer, newStyle) { applyFilter(layer, "className", newStyle); }

/********************************************************************************************************************
One of the superfluous visual affects, should be commented out once I button up the search engine.
********************************************************************************************************************/
function offLink(layer, newStyle) { applyFilter(layer, "className", newStyle); }	

/********************************************************************************************************************
One of the superfluous visual affects, should be commented out once I button up the search engine.
********************************************************************************************************************/
function applyFilter(layer, property, value) {
	layer.style.filter = "blendTrans(duration=.5)";
//	layer.filters.blendTrans.apply();   These are the two lines that break Firefox on the rollover.  "layer.filters is undefined"
	layer[property] = value;
//	layer.filters.blendTrans.play();
}	

/********************************************************************************************************************
The only useful function in here. Automates a php call, I haveno idea how php works, and I'm pretty sure it isn't needed for this
site, but currently changing this implemenation is beyond my scope.  Keep this one here, it's mostly harmless anyway.
********************************************************************************************************************/
function ChangePage(pageName, subPage) {
	document.location.href = "index.asp?method=" + pageName;
}

