var currentdate = 0;
var core = 0;

var txt = new Array(2);
txt[0] = "Learn How to Architect BIG-IP into an ADN";
txt[1] = "LEARN HOW TO TROUBLESHOOT A BIG-IP LTM SYSTEM";		

var txtTitle = new Array(2);
txtTitle[0] = "Architecting BIG-IP into an Application Delivery Network";
txtTitle[1] = "LEARNING HOW TO TROUBLESHOOT A BIG-IP LTM SYSTEM";

var txtPath = new Array(2);
txtPath[0] = "/training-support/global-training/course-descriptions/big-ip-ltm-achitecting.html";
txtPath[1] = "/training-support/global-training/course-descriptions/big-ip-ltm-9x-troubleshooting.html";

function rotateText () {
	randNum = Math.round(100*Math.random());
	core = randNum%2;   
	return core;
}

core = rotateText();  // get random array index  

document.write("<h3 title=" + txtTitle[core] + ">" + txt[core] + "</h3>");
document.write("<p><a title='Global Training Descriptions' href=" + txtPath[core] + ">Get Details</a></p>");		