// change style and create popup if appropriate
function rollon(i) {
	i.className = i.className + "hover";
}

// change style and hide popup if appropriate
function rolloff(i) {
	var l = i.className.length - 5;
	i.className = i.className.substr(0, l);
}
