var News=new Array() 
// Set up the stories to be shown, below.
// To add more stories, continue with the
// pattern, adding to the array.  Remember
// to increment the News[x] index!
News[0] = "November 2008: Milan Signs up with edgeConnect.....     ";
News[1] = "November 2008: New Milan Solutions website launched.....     ";
News[2] = "August 2008: New Milan Resourcing website launched.....     ";
News[3] = "June 2008: Recruitment support office opened in India.....     ";
News[4] = "April 2008: Milan expands its Executive Search.....     ";
News[5] = "January 2008: Milan installs web-based recruitment software.....     ";
News[6] = "October 2007: Milan rebrands.....     ";
News[7] = "September 2007: Milan signs up a leading global IT oursourcer.....     ";
// ======================================
// Do not change anything below this line
// ======================================
function showNews_MR()
{
document.write("<marquee SCROLLDELAY=200>");
for (var i=0;i<News.length;++i) {
	document.write("&nbsp;&nbsp;<a class=\"arialgrey\" href=\"page/newsroom/\">");
	document.write(News[i]);
	document.write("</a>");
	}
document.write("</marquee>");
}