<!-- Begin
function writeMarquee() {

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

