//<![CDATA[
function getText(el) {
  var infobox = document.getElementById('infoboxtext') ;
  var existing = infobox.innerHTML ;
  var text ;
  switch (el) {
    case "webs":
      text = "<strong>Web Solutions</strong> - "
      + "Looking for a cost-effective website? Or perhaps just web hosting? "
      + "Maybe an E-commerce solution? Click here to view more information !" ;
      infobox.innerHTML = text ;
      break ;
    case "print":
      text = "<strong>Large Format Printing</strong> - " 
      + "From regular paper to virtually indestructible vinyls - "
      + "Let us print it for you in a wide variety of sizes!" ;
      infobox.innerHTML = text ;
      break ;
    case "its":
      text = "<strong>IT Support</strong> - "
      + "Computer problems? Viruses? Network Problems? Check what can we do " 
      + "for you!" ;
      infobox.innerHTML = text ;
      break ;
    case "mm":
      text = "<strong>Multimedia Solutions</strong> - "
      + "Would you like to convert your wedding VHS into a DVD? Oh we can help " 
      + "you with that and much more !" ;
      infobox.innerHTML = text ;
      break ;
    case "mkt":
      text = "<strong>Marketing / Advertising</strong> - "
      + "Looking to improve your marketing? Learn more on what we can do for " 
      + "your company." ;
      infobox.innerHTML = text ;
      break ;
    case "contus":
      text = "<strong>Contact Pictographics</strong> - "
      + "Contact information." ;
      infobox.innerHTML = text ;
      break ;
  }
  document.getElementById(el).onmouseout=function() {
    infobox.innerHTML = existing ;
  }
}
//]]>
