var swidth=271;

//scroller height
var sheight=100;

//background color 
var sbcolor="#FFFFFF";

//scroller's speed
var sspeed=2;

var msg='';

//Your messages go below:


msg=	'<ul><li><a href="">Jan 1, 2010</li>'+
		'<li>New Advertising Artwork Series Launch</li></a>'+
		'<li>&nbsp;</li></ul>'+
		
		'<ul><li><a href="">Feb 2, 2009</li>'+
		'<li>Hair Root Series Available in sasa.com</li></a>'+
		'<li>&nbsp;</li></ul>'+

		'<ul><li><a href="">Feb 1, 2009</li>'+
		'<li>New Advertising Artwork Series Launch</li></a>'+
		'<li>&nbsp;</li></ul>'+
		
		'<ul><li><a href="">Nov 1, 2008</li>'+
		'<li>New Advertising Artwork Series Launch</li></a>'+
		'<li>&nbsp;</li></ul>'+

		'<ul><li><a href="">Aug 14, 2007 - Aug 18, 2008</li>'+
		'<li>Hong Kong International Medical &amp; Health Care Fair 2007 at Hong Kong Convention and Exhibition Centre</li></a>'+
		'<li>&nbsp;</li></ul>'+

		'<ul><li><a href="">Jan 10, 2008</li>'+
		'<li>New Advertising Artwork Series Launch</li></a>'+
		'<li>&nbsp;</li></ul>'+

		'<ul><li><a href="">Jan 1, 2008</li>'+
		'<li>New Website Launch</li></a>'+
		'<li>&nbsp;</li></ul>'+

		'<ul><li><a href="">Aug 16, 2007 - Aug 20, 2007</li>'+
		'<li>Hong Kong International Medical &amp; Health Care Fair 2007 at Hong Kong Convention and Exhibition Centre</li></a>'+
		'<li>&nbsp;</li></ul>'+

		'<ul><li><a href="">Aug 17, 2006 - Aug 21, 2006</li>'+
		'<li>Hong Kong International Medical &amp; Health Care Fair 2006 at Hong Kong Convention and Exhibition Centre</li></a>'+
		'<li>&nbsp;</li></ul>'+

		'<ul><li><a href="">Dec 30, 2005 - Jan 3, 2006</li>'+
		'<li>The 3 rd Hong Kong Mega Showcase at Hong Kong Convention and Exhibition Centre</li></a>'+
		'<li>&nbsp;</li></ul>' +

		'<ul><li><a href="">Aug 1, 2005- Nov 31, 2005</li>'+
		'<li>Hair Root Formula (free sample) - exclusive for ¡m Hair Root Solution\'s Club ¡n members.All registered members of Hair Root Solution \'s Club¡n were notified to redeem a free sample of Hair Root Formula (value $50)</li></a>'+
		'<li>&nbsp;</li></ul>' +
		
		'<ul><li><a href="">From June 2005</li>'+
		'<li>Indoor Promotions in Mannings and CRCare Retail Shops. Cash rebate coupons are offered at the points of purchase.</li></a>'+
		'<li>&nbsp;</li></ul>' +
		
		'<ul><li><a href="">Jun 2005</li>'+
		'<li>Hair Root Shampoo special offer $54</li></a>'+
		'<li>&nbsp;</li></ul>' +
		
		'<ul><li><a href="">May 2005</li>'+
		'<li>Hair Root Solution \'s Club Established.</li></a>'+
		'<li>&nbsp;</li></ul>';
		
//End of your messages


var resumesspeed=sspeed
function start() {
	if (document.all) iemarquee(ticker);
	else if (document.getElementById)
		ns6marquee(document.getElementById('ticker'));
}

function iemarquee(whichdiv){
	iediv=eval(whichdiv)
	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)
	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()
	}
}