var randomcontents=new Array()

/*randomcontents[0]='<div style="padding:20px;"><div style="font-size:large;font-weight:bold;padding-bottom:10px;">Our Divisions</div>In addition to our head office and manufacturing facilities located in Barrie, Ontario, Canada, Prodomax has two other supporting divisions, one located in the United States and the other in Mexico.<br><a href="?content=divisions">More Info &raquo;</a></div>'*/
randomcontents[0]='<div style="padding:20px;"><div style="font-size:large;font-weight:bold;padding-bottom:10px;">Careers</div>Interested in working for a company with lots of fun and excitement? Check for the latest careers opportunities.<br><a href="?content=careers">More Info &raquo;</a></div>'
randomcontents[1]='<div style="padding:20px;"><div style="font-size:large;font-weight:bold;padding-bottom:10px;">Welding Systems</div>Prodomax designs a complete range of welding systems from semi-automatic, single station machines to fully automated, multi-cell lines with automatic part transfer.<br><a href="?content=solutions&subtype=welding">More Info &raquo;</a></div>'
randomcontents[2]='<div style="padding:20px;"><div style="font-size:large;font-weight:bold;padding-bottom:10px;">Assembly Systems</div>Prodomax designs and produces a complete range of assembly systems from semi-automatic, single stations to fully automated, multi-cell lines with automatic part transfer.<br><a href="?content=solutions&subtype=assembly">More Info &raquo;</a></div>'
randomcontents[3]='<div style="padding:20px;"><div style="font-size:large;font-weight:bold;padding-bottom:10px;">Machining Systems</div>Prodomax designed and manufactured machining systems incorporate the latest in metal cutting techniques, CNC controls, automatic part transfer and robotic load/unload features.<br><a href="?content=solutions&subtype=machining">More Info &raquo;</a></div>'
randomcontents[4]='<div style="padding:20px;"><div style="font-size:large;font-weight:bold;padding-bottom:10px;">Laser Systems</div>Prodomax designs and produces a complete range of laser processing systems.<br><a href="?content=solutions&subtype=laser">More Info &raquo;</a></div>'
randomcontents[5]='<div style="padding:20px;"><div style="font-size:large;font-weight:bold;padding-bottom:10px;">Material Handling Systems</div>Prodomax designs and produces a complete range of material handling systems.<br><a href="?content=solutions&subtype=material">More Info &raquo;</a></div>'
randomcontents[6]='<div style="padding:20px;"><div style="font-size:large;font-weight:bold;padding-bottom:10px;">Contact Us</div>If you have any questions, suggestions or feedback, contact us!<br><a href="?content=contact">More Info &raquo;</a></div>'
randomcontents[7]='<div style="padding:20px;"><div style="font-size:large;font-weight:bold;padding-bottom:10px;">Latest News</div>Find out whats new at Prodomax.<br><a href="?content=news">More Info &raquo;</a></div>'
randomcontents[8]='<div style="padding:20px;"><div style="font-size:large;font-weight:bold;padding-bottom:10px;">RSS Feeds</div>Find out how you can get the latest RSS feeds into your favorite RSS readers to read Prodomaxes latest news at your own convenience.<br><a href="?content=rss">More Info &raquo;</a></div>'


function randomcontent(){
  var one = randomcontents[Math.floor(Math.random()*randomcontents.length)];
  var two = randomcontents[Math.floor(Math.random()*randomcontents.length)];
  var three = randomcontents[Math.floor(Math.random()*randomcontents.length)];

  if (one == two || one == three || two == three)
  {
    randomcontent();
  }
  else
  {
    document.write(one);
    document.write(two);
    document.write(three);
  }
}
