// JavaScript Document

<!--
var quote = "";
var source = "";

function randomNum() {
  var range = 3;
  return Math.floor(Math.random() * range) + 1;
}

function getTestimonial(){
	var which = randomNum();

	switch(which){

case 1:
quote = "The granularity and flexibility of Traffic Sentinel are just plain unmatched anywhere in the industry."; 
source = "Joe Giegel, Senior Network Engineer, Agilent Technologies";	
break;

case 2:
quote = "We are delighted with the InMon Traffic Sentinel product... The network is running more smoothly every day."; 
source = "Victor Chu, Network Engineer, Hewlett-Packard";
break;

case 3:
quote = "In our environment performance is critical. Traffic Sentinel allows us to pinpoint network problems instantly."
source = "Robert Jordan, Senior Network Engineer, Lucasfilm Entertainment Company Ltd."
break;


	}	var text = '<div class="quote">&ldquo;' + quote + '&rdquo;</div>';
			text += '<div class="source">&ndash;' + source + '</div>'			
			return text;
}


//-->

