var versionNum = parseInt(navigator.appVersion);
if(versionNum < 2 && navigator.appName == 'Netscape') {
} else {

  var pool = new MediaPool();

  // pool.addImage("path to image", "url", "alt text");
  // pool.addFlash("path to movie", width, height, loop_flag, "alternate content - image with link or imagemap");
  // pool.addHTMLFragment("any arbitrary HTML you want");
  // BE SURE TO ESCAPE DOUBLE QUOTES IN TEXT BY PRECEDING
  // THE QUOTE CHARACTERS WITH A BACKSLASH.
  // EXAMPLE: "This an example of \"alternate content\" that contains double quotes."

    pool.addHTMLFragment(
	'<div class=subhead>White Paper</div><a href="http://www.nortel.com/services/collateral/idc_prof_services.pdf?NT_promo_T_ID=bug_whitepaper_idc_services_10_12_09"><img src="http://www.nortel.com/images/165x100/165x100_cut_costs_with_services.jpg" alt="PSCU evaluates UC" class="leftalignedwrap"></a>Learn why investing in services, even during the economic downturn, can be a worthy and valuable investment for the future.<br /><a class="arrow" href="http://www.nortel.com/services/collateral/idc_prof_services.pdf?NT_promo_T_ID=bug_whitepaper_idc_services_10_12_09">Read the White Paper</a>'
	);

    pool.addHTMLFragment(
	'<div class=subhead>Case Study</div><a href="http://www31.nortel.com/webcast.cgi?id=7611"><img src="http://www.nortel.com/images/165x100/solutions/165x100_pscu_evaluates_uc.jpg" alt="PSCU evaluates UC" class="leftalignedwrap"></a>PSCU Financial Services evaluates UC as a complement to its Microsoft OCS. Nortel Global Services\' UC evaluation kit gave them "phenomenal" results.<br /><a class="arrow" href="http://www31.nortel.com/webcast.cgi?id=7611">Watch the Video</a>'
	);

    pool.addHTMLFragment(
	'<div class=subhead>Video</div><a href="http://www31.nortel.com/webcast.cgi?id=7509"><img src="http://www.nortel.com/images/165x100/165x100_nis_defferentiator.jpg" alt="NIS: Differentiator" class="leftalignedwrap"></a>Learn how Network Implementation Services can provide a complete, end-to-end, one-stop shop solution.<br /><a class="arrow" href="http://www31.nortel.com/webcast.cgi?id=7509">Watch the Video</a>'
	);
	
	pool.addHTMLFragment(
	'<div class=subhead>Spotlight</div><a href="http://www.nortel.com/corporate/momentum/stadiums/index.html"><img src="http://www.nortel.com/images/165x100/solutions/165x100_uc_stadiums_momentum.jpg" alt="Stadiums" class="leftalignedwrap"></a>Today\'s stadiums are outfitted with a complete unified communications solution to aid the staff and enable fans to watch instant replays and receive real-time statistic updates on their PDAs.<br /><a class="arrow" href="http://www.nortel.com/corporate/momentum/stadiums/index.html">Learn More</a>'
	);
    
	var randomObject = null;
  randomObject = pool.getRandomObject();
  if(randomObject != null) {
      document.writeln( randomObject.toHtml() );
  }

}

