function allonloads(){
SMpopulate();




}
/*
Original Javascript code by dynamic drive, modified by SuperCat http://www.ourscripts.net
Cross browser Marquee II-  Dynamic Drive (www.dynamicdrive.com)
For full source code, 100's more DHTML scripts, and TOS, visit http://www.dynamicdrive.com
Credit MUST stay intact
*/
var SMspeed=1;
var SMiedom=document.all||document.getElementById;
var SMactualheight='';
var SMcross_marquee, SMns_marquee;
var SMtxt='';

if(SMiedom){
	SMtxt='<div style="position:relative;width:100%;height:'+SMheight+';overflow:hidden" onmouseover="SMspeed=0" onmouseout="SMspeed=1"><div id="SMiemarquee" style="position:absolute;left:0px;top:0px;width:100%;"></div></div>';
}else{
	SMtxt='<ilayer width=100% height='+SMheight+' name="SMns_marquee"><layer name="SMns_marquee2" width=100% height='+SMheight+' left=0 top=0 onmouseover="SMspeed=0" onmouseout="SMspeed=1"></layer></ilayer>';
}
function SMscroll(){
	if(SMiedom){
		if(parseInt(SMcross_marquee.style.top)>(SMactualheight*(-1)+2)){
			SMcross_marquee.style.top=parseInt(SMcross_marquee.style.top)-SMspeed+"px";
		}else{
			SMcross_marquee.style.top=parseInt(SMheight)+2+"px";
		}
	}
	else{
		if(SMns_marquee.top>(SMactualheight*(-1)+2)){
			SMns_marquee.top-=SMspeed;
		}else{
			SMns_marquee.top=parseInt(SMheight)+2;
		}
	}
}
function changeBoxSize(showhide) {
document.getElementById('smilies_hide').style.display='none';
document.getElementById('smilies_show').style.display='none';
document.getElementById('smilies_'+showhide).style.display='block';
}
function SMpopulate(){
	if(SMiedom){
		SMcross_marquee=document.getElementById? document.getElementById("SMiemarquee") : document.all.SMiemarquee;
		SMcross_marquee.style.top=parseInt(SMheight)+8+"px";
		SMcross_marquee.innerHTML=SMcontent;
		SMactualheight=SMcross_marquee.offsetHeight;
	}else{
		SMns_marquee=document.SMns_marquee.document.SMns_marquee2;
		SMns_marquee.top=parseInt(SMheight)+8;
		SMns_marquee.document.write(SMcontent);
		SMns_marquee.document.close();
		SMactualheight=SMns_marquee.document.height;
	}
	this.setInterval("SMscroll()",50);
}
window.onload=allonloads;