function Ticker(articles){
this.articles = articles;
this.show=show;
this.width="182px";
this.content = "";

//alert(this.articles.length);
for(i=0;i<this.articles.length;i++){
this.content = this.content + "<b>" + this.articles[i]['title'] + "</b>&nbsp;&nbsp;&nbsp;-&nbsp;&nbsp;&nbsp;" + this.articles[i]['content'] + "&nbsp;&nbsp;&nbsp;-&nbsp;&nbsp;&nbsp;<span class='rolloverBlack'><a href='" + this.articles[i]['link'] + "' class='rolloverBlack'>Read More >></a></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";
}
}
function show(){
with (this)
document.write("<marquee scrollAmount='3' style='width:" + width + "' class='Main_Text' onMouseOver='this.stop();' onMouseOut='this.start();' >" + content + "</marquee>");
}
