<!-- Begin
function writeMarquee() {

	var message = new Array(10);
	message[0] = '';
	message[1] = "<font><strong><font color='#ff0000'><strong>Air  Charter Service operates over 5000 charters per year with a turnover of  more than $300m. With&nbsp;offices across North America, South America, Europe, CIS, Africa, the Middle East and Asia, Air Charter   Service gives you access to aircraft anywhere in the world. Call now to   speak to an account manager!</strong></font></strong></font>";
	var storyspacer = '&nbsp;&nbsp;&nbsp;<b> | </b>&nbsp;&nbsp;&nbsp;';

	var msg = '';
	var j = '1';
	for (i = 0; i <= 1; i++){

		msg = msg + message[i];
		if (message[i] != ''){

		if(i != j){

			msg = msg + storyspacer;
		}
		}
	}
	document.write("<marquee bgcolor='#FFFFFF' scrolldelay='20' scrollamount='3' class='newstext2' onMouseover='this.scrollDelay=200' onMouseout='this.scrollDelay=20'>" + msg + "</marquee>"); 
}
writeMarquee();
//  End -->

