﻿		var Message=new Array("Trung Tâm Điện máy IDEAS hân hạnh chào đón quý khách",
						"Địa chỉ: 133-141AB Cách Mạng Tháng Tám , F5 , Q3 , TPHCM",
						"Điện thoại: (084)- 08 8328172   -   Fax: (08) 8328171 , Email: ideas@ideasshoppingcenter.com");
		var place=1;
		var index =0;
		function scrollIn() {
			window.status=Message[index].substring(0, place);
			if (place >= Message[index].length) {
				place=1;
				window.setTimeout("scrollOut()",1000);
			} else {
				place++;
				window.setTimeout("scrollIn()",50);
		   }
		}
		function scrollOut() {
			
			window.status=Message[index].substring(place, Message[index].length);
			if (place >= Message[index].length) {
				place=1;
				if(index<2)
					index ++;
				else
					index =0;
				window.setTimeout("scrollIn()", 200);
			} else {
				place++;
				window.setTimeout("scrollOut()", 100);
		   }
		}
		scrollIn();
