var content = "Research has shown that good relevant content will help your site, clients, and staff succeed.";
var easy = "Our mission critical content can be easily integrated in your site through XML or our Private Label Services.";
var free = "Manufacturers can submit press releases on new products free of charge on this site.";
var trusted = "Receive your content from a 100 year-old trusted name, Thomas Publishing Company. ";
var other = "Product News Network&reg; delivers new industrial product information in a timely, reliable and complete manner covering the whole range of products from adhesives through waste handling equipment.";

function Hilite(name,over) {
    swapimg(name, over);

    if (over)
        document.all['maindiv'].innerHTML = other;
    else {
        switch (name) {
            case "contentMN":
                document.all['maindiv'].innerHTML = content;
                break;
            case "trustedMN":
                document.all['maindiv'].innerHTML = trusted;
                break;
            case "freeMN":
                document.all['maindiv'].innerHTML = free;
                break;
            case "easyMN":
                document.all['maindiv'].innerHTML = easy;
                break;
        }
    }
}


function swapimg(name, over)
{
 if(window.document.images) 
  {
    if (over)
      window.document.images[name].src = "img/" + name + "on.jpg";
    else
      window.document.images[name].src = "img/" + name + "off.jpg";
  }
}



