/*  DO MOUSEOVERS  */
function mo(state,image)
{
	var src = image.src, ext = src.substring(src.lastIndexOf('.'),src.length);
	image.src = state ? src.replace(ext,'-mo' + ext) : src.replace('-mo' + ext,ext); return;
}

/*  GET AN ELEMENT  */
if(typeof $ != 'function') { function $(element) { return document.getElementById(element); } }

