<!--
var tp_image_path = "/images/button_group/"

if (document.images) 
  {
	// On images
	image1on = new Image();
	image1on.src = tp_image_path + "websites-dn.jpg";
	image2on = new Image();
	image2on.src = tp_image_path + "hosting-dn.jpg";
	image3on = new Image();
	image3on.src = tp_image_path + "projects-dn.jpg";
	image4on = new Image();
	image4on.src = tp_image_path + "newsletter-dn.jpg";
	image5on = new Image();
	image5on.src = tp_image_path + "articles-dn.jpg";
  
  
	// Off images
	image1off = new Image();
	image1off.src = tp_image_path + "websites-up.jpg";
	image2off = new Image();
	image2off.src = tp_image_path + "hosting-up.jpg";
	image3off = new Image();
	image3off.src = tp_image_path + "projects-up.jpg";
	image4off = new Image();
	image4off.src = tp_image_path + "newsletter-up.jpg";
	image5off = new Image();
	image5off.src = tp_image_path + "articles-up.jpg";

  }
 
function act(imgName, imgNum) {

  if (document.images)
    document[imgName].src = eval(imgName + 'on.src')
  }

function inact(imgName) {
  if (document.images)
    document[imgName].src = eval(imgName + 'off.src')
  }

// -->
