
			//Array holds the news
			//var News = new Array("Understanding security and privacy features", "Getting Started with Internet Explorer", "To change the appearance of the Windows toolbar")
			
			//Function ScrollNews() uses var pos
			var pos = 1

			//Function SlideNews() uses var pos2
			var pos2 = 0

			//To change the news 
			var index = 0

			//To clear the Intervals
			var IntervarlId1 = 0
			var IntervarlId2 = 0

			
			//Function to display each news, with typing effect
			function ScrollNews()
			{
				if( pos == 0 )
					news.innerText =  News[index]
				news.innerText = News[index].substring(0,pos)
				
				pos++
				if (pos > News[index].length + 25)
				{
					pos = 0
					pos2 = 0
					NewSlide() //Remove current news
				}
				
			}
			
			//Function to Slide each news as ScrollNews() finished typing it
			function SlideNews()
			{
				news.innerText = News[index].substring(pos2,News[index].length)
				pos2++				
				if (news.innerText.length == 0 )
				{
					
					ClearSlide() //Stop scrolling
					index++ //change index
					if (index == News.length ) 
						index = 0
					return
				}
			}
			
			function NewSlide()
			{
				clearInterval(IntervalId1) //stop typing
				IntervalId2 = setInterval("SlideNews()", 100)//start scrolling
			}
			
			function ClearSlide()
			{
				clearInterval(IntervalId2) //stop scrolling
				IntervalId1 = setInterval("ScrollNews()", 100)//start typing
			}
			
			IntervalId1 = setInterval("ScrollNews()", 100)//start typing				
			