	var marquee_width="755px";
	var marquee_speed=1;
	//pause_it 0 or 1;
	var pause_it=1;

	var marquee_content='New HANSE 630e and 470e launched &nbsp; * &nbsp;  HANSE 430 to be launched January 2007 &nbsp; * &nbsp; New generation Fjord 39 Motor Boat imported to Australia and New Zealand by Windcraft &nbsp; * &nbsp;  HANSE  400e wins Yacht of the Year 2006 at Duesseldorf Boat Show Germany &nbsp; * &nbsp; 32 HANSE yachts ordered since August &nbsp; * &nbsp; New HANSE models out now: 315 - 370e - 400e';
	var marquee_content='New HANSE 630e and 470e launched &nbsp; * &nbsp;  HANSE 430 to be launched January 2007 &nbsp; * &nbsp; New generation Fjord 39 Motor Boat imported to Australia and New Zealand by Windcraft &nbsp; ';

	var copyspeed=marquee_speed;
	var pausespeed=(pause_it==0)? copyspeed: 0;
	var iedom=document.all||document.getElementById;
	var cross_marquee;

	function populate_marquee(){
		if(document.getElementById("marqueeContent")){
			cross_marquee=document.getElementById("marquee_scroller");
			cross_marquee.style.left=parseInt(marquee_width)+8+"px";
			cross_marquee.innerHTML=document.getElementById("marqueeContent").innerHTML;
			lefttime=setInterval("scrollmarquee()",20);
		}
	}

	function scrollmarquee(){
		cross_marquee.style.left=parseInt(cross_marquee.style.left)-copyspeed+"px";
		if(parseInt(cross_marquee.style.left)+cross_marquee.offsetWidth<0){
			cross_marquee.style.left=parseInt(marquee_width)+8+"px";
		}
	}