function switch_insights() {
	insightsLead = new Array
	insightsLead[1] = "EMV Implementation for Issuers";
	insightsLead[2] = "EMV Implementation for Acquirers";
	insightsLead[3] = "Financial institutions face constant change";
			
	insightsLink = new Array
	insightsLink[1] = "http://www.paragonedge.com/Paragonweb/news/industry_insights/chip-card-implementation-for-issuers.shtml";
	insightsLink[2] = "http://www.paragonedge.com/Paragonweb/news/industry_insights/emv-planning-for-acquirers.shtml";
	insightsLink[3] = "http://www.paragonedge.com/Paragonweb/news/industry_insights/top-12-financial-industry-challenges.shtml";
	
	
insightsDescription = new Array
	insightsDescription[1] = "What decisions do you need to make before issuing chip cards?";
	insightsDescription[2] = "What should you ask when planning your EMV device budget and timeline?";
	insightsDescription[3] = "How do you prepare testers for the top 12 Industry Challenges?";
		
	
	elem = document.getElementById('insights_1');
	elem.innerHTML = insightsLead[1]+'<br /><a href="'+insightsLink[1]+'">'+insightsDescription[1]+'<a>';
	
	elem = document.getElementById('insights_2');
	elem.innerHTML = insightsLead[2]+'<br /><a href="'+insightsLink[2]+'">'+insightsDescription[2]+'<a>';
	
	elem = document.getElementById('insights_3');
	elem.innerHTML = insightsLead[3]+'<br /><a href="'+insightsLink[3]+'">'+insightsDescription[3]+'<a>';
	
	
}
timerID = setTimeout("switch_insights()", 100);

