function mo(over_out,image)
{
	var src = image.src, ext = src.substring(src.lastIndexOf('.'),src.length);
	image.src= (over_out == 1 ? src.replace(ext,'-active' + ext) : src.replace('-active' + ext,ext)); return; //ternary operators -- sweet!
}