<SCRIPT language=JavaScript1.2>

//<iframe> script by Dynamicdrive.com

//Specify speed of scroll. Larger=faster (ie: 5)
var scrollspeed=cache=2
function initialize(){
marqueeheight=document.all? parent.document.all.datamain.height : parent.document.getElementById("datamain").getAttribute("height")
dataobj=document.all? document.all.datacontainer : document.getElementById("datacontainer")
dataobj.style.top=parent.document.all.datamain.height;
thelength=dataobj.offsetHeight-50
scrolltest()
}

function scrolltest(){
dataobj.style.top=parseInt(dataobj.style.top)-scrollspeed
if (parseInt(dataobj.style.top)<thelength*(-1))
dataobj.style.top=parent.document.all.datamain.height;
setTimeout("scrolltest()",50)
}

window.onload=initialize


function showhidenews(id1,id2){
$(id1).animate({"height": "toggle"}, { duration: "slow"});
if(($(id2).attr("src"))=='image/minus.gif'){
$(id2).attr("src",'image/plus.gif');
}else{
$(id2).attr("src",'image/minus.gif');
}
}


</SCRIPT>
