<!--
// Developed by Edge Impact Consulting Limited www.edgeimpact.co.uk Tel: 0845 450 6767
//  This code when called from <body onload="EiScrollingStatus();"> will display the message contained in EiT1 in the status bar scrolling from the right to the left and when it gets to the end it will display the text in the status line for 3 seconds before scrolling again. Include this module in your code in the form:
// <script language="JavaScript1.2" src="EiScrollingStatus.js"></script>
var EiT1  = "Academy Human Resources is an employment agency which specialises in education and graduate recruitment. With fifteen years experience in the recruitment industry, we are able to provide a professional and efficient service. For Further information click on a button";
var EiT2 = "                                                                                                           " + EiT1;;
var EiScrollPos = 1;
function EiScrollingStatus(){
	if (EiScrollPos < EiT2.length) {
		EiScrollPos  = EiScrollPos + 1;
		defaultStatus = EiT2.substr(EiScrollPos);
		window.setTimeout('EiScrollingStatus()',50);
	}
	else {
		EiScrollPos  = 1;
		defaultStatus = EiT1;
		window.setTimeout('EiScrollingStatus()',3000);
	}
}
//-->
