function makeHighlightButton(buttonName){
	$(buttonName+'h').fade('hide');
	$(buttonName+'l').addEvent('mouseover', showHighlight.pass(buttonName));
	$(buttonName+'l').addEvent('mouseout', hideHighlight.pass(buttonName));
}

function showHighlight(varButton){
	$(varButton + "h").fade('in');
}
function hideHighlight(varButton){
	$(varButton + "h").fade('out');
}
