/*  DO MOUSEOVERS  */
function mo(over_out,image)
{
	var src = image.src, ext = src.substring(src.lastIndexOf('.'),src.length);
	image.src= (over_out == 1 ? src.replace(ext,'-mo' + ext) : src.replace('-mo' + ext,ext)); return;
}
