
	//scroller width
	//var swidth=120;
	var swidth=450;

	//scroller height
	//var sheight=5;
	var sheight=160;

	//background color
	var sbcolor='#ffffff';

	//scroller's speed
	var sspeed=1;

	var msg=''

	//Your messages go below:


	msg +=
	
	'<ul><li>Shop now Open</li>'+
		'<li><a href="store.html" title="">A new shop has been added to the site, run by Amazon. Remember spend over £25 and delivery is free.</a></li>'+
		'<li> </li></ul>'+ 
	
	'<ul><li>New comment on my service</li>'+
		'<li><a href="whatpeoplesay.html" title="">Olga said "Well, I have no words. This level of professionalism is unknown to me since I left UCLA." </a></li>'+
		'<li> </li></ul>'+ 
	
	
	'<ul><li>New</li>'+
		'<li><a href="custompc.html" title="">Microsoft Office 2010 starter edition available with new computers. </a></li>'+
		'<li style="font-size:9px; color:red;">Note: PC&quot;s are preloaded with reduced-functionality versions of Word and Excel that include advertising. They do not include PowerPoint or Outlook. You will need to purchase an Office 2010 Product Key to activate the full-featured Office software. </li><li> </li></ul>'+
	
	'<ul><li>New Website</li>'+
		'<li><a href="http://www.elduqueholidays.es" target="_blank">New Holiday Apartment rental website based in Sabinillas</a></li>'+
		'<li> </li></ul>'+ 
	
	'<ul><li>New Website</li>'+
		'<li><a href="http://www.marinainmobiliaria.es" target="_blank">New Spanish Estate Agent website in Spanish and English based in Chipiona</a></li>'+
		'<li> </li></ul>'+ 
	
	'<ul><li>New Website</li>'+
		'<li><a href="http://www.thewillow.es" target="_blank">New Holiday Property Rental Website based in Chiclana</a></li>'+
		'<li> </li></ul>'+ 
		
		'<ul><li>Work for Alzheimer Day centre</li>'+
		'<li><a href="">Recently I donated my time to setup computers and a network in a new day care centre for Alzheimer&acute;s patients being opened in Almendralejo, Badajoz.</a></li>'+
		'<li> </li></ul>'+   
	
		'<ul><li>Breaking News</li>'+
		'<li><a href="lessons.html" title="">1st Spanish Lesson FREE</a></li>'+
		'<li> </li></ul>'+                     
		
		'<ul><li>New</li>'+
		'<li><a href="javadev.html" title="">Java Development Services available</a></li>'+
		'<li> </li></ul>'+  
		

		'<ul><li>New</li>'+
		'<li><a href="custompc.html" title="">Windows 7 in English available with new custom computers</a></li>'+
		'<li> </li></ul>'+
	'';

	//End of your messages
	// Begin the ticker code

	var resumesspeed=sspeed
	function start() {
			if (document.all) iemarquee(ticker);
			else if (document.getElementById)
					ns6marquee(document.getElementById('ticker'));
	}
	
	function iemarquee(whichdiv){
			iediv=eval(whichdiv)
			sheight += 50;
			iediv.style.pixelTop=sheight
			iediv.innerHTML=msg 
			sizeup=iediv.offsetHeight
			ieslide()
	}
	
	function ieslide(){
			if (iediv.style.pixelTop>=sizeup*(-1)){
					iediv.style.pixelTop-=sspeed
					setTimeout("ieslide()",100)
			}
			else{
					iediv.style.pixelTop=sheight
					ieslide()
			}
	}
	
	function ns6marquee(whichdiv){
			ns6div=eval(whichdiv)
			sheight += 50;
			ns6div.style.top=sheight + "px";
			ns6div.innerHTML=msg
			sizeup=ns6div.offsetHeight
			ns6slide()
	}
	function ns6slide(){
			if (parseInt(ns6div.style.top)>=sizeup*(-1)){
					theTop = parseInt(ns6div.style.top)-sspeed
					ns6div.style.top = theTop + "px";
					setTimeout("ns6slide()",100)
			}
			else {
					ns6div.style.top = sheight + "px";
					ns6slide()
			}
	}

