		var newsActive = 0;
		var newsCount = 5;
		var newsCurrent = 0;
		var mainInterval = null;
		
		var newsStory2 = new Array('','Craig and his staff did an outstanding job of moving our furniture + equipment, especially since there were people still in the restaurant at time.','references.html','Mike Wills');
		var newsStory3 = new Array('','General Moving Carriers staff was great, they came on time moved carefully and  thoroughly throughout the move.','references.html','Nick & Sophia Saketos');
		var newsStory1 = new Array('','You guys were very professional, worked hard, and were polite and courteous. Thank you!','references.html','Al Ciotola');
//		var newsStory4 = new Array('','Rich &Ronnie  work together like Steel&Cement ,they lead the team and worked like there is no tomorrow. We really appreciated how they took the time to crate our furniture & Vases. I will recommend to others.','references.html','Regards, Mr.Reslcof, Venice ,CA');
		var newsStory5 = new Array('','I would recommend General Moving Carriers to family and friends,Packing up is always a chore but the crew made the chore much easier.','references.html','Sincerely, Meredith Moses');
		var newsStory6 = new Array('','The guys did a great job caring for items which were fragile,sentimental and valuable, much appreciated.','references.html','Joseph .p.Monaghan');


		var newsStories = new Array(newsStory1,newsStory2,newsStory3,newsStory5,newsStory6);

		function Start() {
			clearInterval(mainInterval);
			mainInterval = setInterval('AutoRight()', 7500);
			AutoRight();
		}
		
		function AutoRight() {
			if (newsActive==0) {
				newsActive = 1;
				if (newsCurrent==(newsCount-1)) {
					newsCurrent = 0;
					CreateHTML('0px');
					
					new Insertion.After('news_story_' + (newsCount-1), newHTML);
			
					new Effect.Fade('news_story_' + (newsCount-1), {afterFinish: function(){RemoveObject(newsCount-1)}});
					new Effect.Appear('news_story_' + newsCurrent);
				}
				else {
					newsCurrent = newsCurrent + 1;
					
					CreateHTML('0px');
					
					new Insertion.After('news_story_' + (newsCurrent-1), newHTML);
			
					new Effect.Fade('news_story_' + (newsCurrent-1), {afterFinish: function(){RemoveObject(newsCurrent-1)}});
					new Effect.Appear('news_story_' + newsCurrent);
				}
			}
		}
		
		function GoRight() {
			clearInterval(mainInterval);
			//document.getElementById("news_play_button").style.display = "block";
			//document.getElementById("news_pause_button").style.display = "none";
			AutoRight();
		}
		
		function GoLeft() {
			clearInterval(mainInterval);
			//document.getElementById("news_play_button").style.display = "block";
			//document.getElementById("news_pause_button").style.display = "none";
			if (newsActive==0) {
				newsActive = 1;
				if (newsCurrent==0) {
					newsCurrent = (newsCount-1);
					
					CreateHTML('0px');
					
					new Insertion.Before('news_story_0', newHTML);
					
					new Effect.Fade('news_story_0', 0, 600, {afterFinish: function(){RemoveObject(0)}});
					new Effect.Appear('news_story_' + newsCurrent);
				}
				else {
					newsCurrent = newsCurrent - 1;
				
					CreateHTML('0px');
					
					new Insertion.Before('news_story_' + (newsCurrent+1), newHTML);
					
					new Effect.Fade('news_story_' + (newsCurrent+1), {afterFinish: function(){RemoveObject(newsCurrent+1)}});
					new Effect.Appear('news_story_' + newsCurrent);
				}
			}
		}
		
		function Pause() {
			clearInterval(mainInterval);
			//document.getElementById("news_play_button").style.display = "block";
			//document.getElementById("news_pause_button").style.display = "none";
		}
		
		function Play() {
			Start();
			AutoRight();
			//document.getElementById("news_play_button").style.display = "none";
			//document.getElementById("news_pause_button").style.display = "block";
		}
		
		function CreateHTML(marginleft) {
			newHTML = "<div id=\"news_story_" + newsCurrent + "\" class=\"news_story\" style=\"display: none; left: " + marginleft + ";\">";
			if (newsStories[newsCurrent][0].length > 0) {
				newHTML = newHTML + "<a href=\"" + newsStories[newsCurrent][2] + "\"><img src=\"" + newsStories[newsCurrent][0] + "\" alt=\"" + newsStories[newsCurrent][1] +"\" \/><\/a>";
			}
			if (newsStories[newsCurrent][1].length > 0) {
				newHTML = newHTML + "<em>" + newsStories[newsCurrent][1] + "<\/em>";
			}
			if (newsStories[newsCurrent][3].length > 0) {
				newHTML = newHTML + "<p>- " + newsStories[newsCurrent][3];
				if (newsStories[newsCurrent][2].length > 0) {
					newHTML = newHTML + " <a href=\"" + newsStories[newsCurrent][2] +"\"><span>Read More</span><\/a>";
				}
				newHTML = newHTML + "<\/p>";
			}

			newHTML = newHTML + "<\/div>";
		}
		
		function RemoveObject(obj) {
			Element.remove('news_story_' + obj);
			newsActive = 0;
		}
		
		window.onload = Start;
		window.onunload = Pause;
