//scroller width
var swidth=200;

//scroller height
var sheight=300;

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

//scroller's speed
var sspeed=2.2;

var msg=''

//Your messages go below:

msg +=

	<!--'<a href="news_gartner_april2011.htm" class="newsitem"><span class="newsalt"><b>Gartner reflects an emerging new order in the EA market: </b></span><br />Read about their \'Assessment of Enterprise Architecture Tool Capabilities\'</a><br />'+ -->

	'<a href="news_mood15_feb2011.htm" class="newsitem"><span class="newsalt"><b>MooD 15 gets its first Pre-Release: </b></span><br />Offering advance experience of some of the exciting developments due to be released later in the year</a><br />'+

	'<a href="news_gartner_feb2011.htm" class="newsitem"><span class="newsalt"><b>Gartner: </b></span><br />MooD International named in "Visionary" quadrant in Gartner report on enterprise architecture market</a><br />'+

	'<a href="news_queensaward.htm" class="newsitem"><span class="newsalt"><b>Queen\'s Award Win: </b></span><br /> Making MooD International twice winners of the UK\'s most prestigious award</a><br />'+

	'<a href="news.htm" class="newsitem"><span class="newsalt">MooD 2010: </span><br />MooD international’s latest software release</a><br />'+	
	
	'<a href="news_patents.htm" class="newsitem"><span class="newsalt">MooD International achieves further US patent for distinctive technology: </span>Architecture beyond diagrams</a><br />'+
	
	'<a href="news_community.htm" class="newsitem"><span class="newsalt">MooD International CEO works with local schools: </span><br />Raising funds for investment in music education</a><br />'+
	
	'<a href="Salamander_PDFs/MooDPlatform_Butler.pdf" class="newsitem" target="_blank"><span class="newsalt">Butler Group Technology Audit: </span><br />MooD Platform considered well aligned with the requirements of large, distributed, and decentralised organizations</a><br />'+

	'<a href="Salamander_PDFs/News%20PDFs/Race%20Across%20America%20news.pdf" class="newsitem" target="_blank"><span class="newsalt">MooD International sponsors UK Bike M.A.D. in Race Across America: </span><br />he ultimate cycling endurance race</a><br />'+

	'<a href="Salamander_PDFs/News%20PDFs/Salamander_Everware.pdf" class="newsitem" target="_blank"><span class="newsalt">MooD International further challenges market: </span><br />New ground-breaking platform for business-driven SOA</a><br />'+

	'<a href="Salamander_PDFs/News%20PDFs/Salamander_BusOrch_news.pdf" class="newsitem" target="_blank"><span class="newsalt">MooD Business Orchestration: </span><br />Launch delivers SOA value</a><br />'+

'';

//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 += 0;
		iediv.style.pixelTop=20
		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 += 0;
		ns6div.style.top="20px";
		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()
		}
}
