function hoverClass ($myId) {
	var thisId = $($myId);
	thisId.removeClass($myId + 'Off');
	thisId.addClass($myId + 'On');
}	
function hoverClassRemove ($myId) {
	var thisId = $($myId);
	thisId.removeClass($myId + 'On');
	thisId.addClass($myId + 'Off');
}