// JavaScript Document
<!--
var max=13; // the number of message to be rotated
var thisMessage=1; // initially message 1
var message=new MakeMessageArray(max); // create an array of message

function MakeMessageArray(n)
	{
	this.length=n;
	for (var i=1; i<=n;i++)
		{
		this[i]="";
		}
	return this;
	}
	
// then populate the array with the message links and file path	
		
message[1]='That on March 15, 2006 MS Beverage Industry has produced its first carbonated energy drink called Boom Boom. And After a week they have produced their first softdrink name BCola.';
message[2]='That Oasis Mall covers the largest area of mosaic marble flooring in the world (42,000 sq. meters) & is registered in Guinness Book of world records.';
message[3]='That SPCI is the leading manufacturer of quality perfumes and cosmetics in Saudi Arabia.';
message[4]='That MS Glass Industry is a quality managed company & certified to ISO 9002 quality management system.';
message[5]='That MS Collective Company was first commercially registered in 1948.';
message[6]='That MS Glass Industry is the leading manufacturer of quality glass containers and press ware items in Saudi Arabia.';
message[7]='That MS Furniture is the leading manufacturer of quality furniture in Saudi Arabia.';
message[8]='That Oasis mall is world class shopping center, which had cost USD 150 million to develop, covering a built area of 110,000 square meters.';
message[9]='That SPCI was established in 1982 with a total financing of USD 18.5 million and a capital of USD 6 million.';
message[10]='That MSBI has produced 8 carbonated drinks within the span of 1 year.';
message[11]='In 1989, MSGI was created primarily as a vehicle to manufacture perfume containers for sister company (SPCI).';
message[12]='The MSGI factory site is spread at an area of 111,000 sq. meters and comprising of three furnaces, operating at capacity of 320 tons of glass a day.';
message[13]='MSGI with its massive expansions has become the group’s largest industrial investment of over USD 150 million.';
// the random number function returns a number 1 to max
function rand(n)
	{
	rnum=Math.floor(n*Math.random())+1
	return rnum;
	}
		
// the function that is called from the body script
function setMessage()
	{
	thisMessage=rand(max);
	}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
//-->
<!-- Print out the random text
	setMessage();
	document.write (message[thisMessage]);
	// -->
