var ostat = false;
function scrollstop() {
news.scrollAmount = 0;
ostat = true;
}
function scrollplay() {
news.scrollAmount = 1;
ostat = false;
}
$("document").ready( function() {
	//<marquee class="tdMailpub" direction="up" behavior="scroll" width="100%" vspace="6" hspace="0" height="200" loop="-1" scrollamount="1" scrolldelay="150" truespeed onMouseOver="scrollstop()" onMouseOut="scrollplay()" id="news">
	//$('div[@class*=noticias_destaques]').html('<marquee class="tdMailpub" direction="up" behavior="scroll" width="100%" vspace="6" hspace="0" height="200" loop="-1" scrollamount="1" scrolldelay="150" truespeed onMouseOver="scrollstop()" onMouseOut="scrollplay()" id="news">' + $('div[@class*=noticias_destaques]').html() + '</marquee>');
	$('div[@class*=noticias_destaques]').html('<marquee class="tdMailpub" direction="up" behavior="scroll" width="100%" vspace="6" hspace="0" height="200" loop="-1" scrollamount="1" scrolldelay="60" truespeed onMouseOver="scrollstop()" onMouseOut="scrollplay()" id="news">' + $('div[@class*=noticias_destaques]').html() + '</marquee>');		
});