function initWeb()
{
	var obj = document.getElementById('tdfons');
	var num = Math.floor(Math.random()*6);
	obj.className = "fonshome" + num.toString();
	
	num = Math.floor(Math.random()*4);
	setFlashSrc("/Portals/0/flash/flash" + num.toString() + ".swf");
}
function setFlashSrc(newSrc)
{
    var obj = document.getElementById('tdflash');
	var flash;
    flash= '<object type="application/x-shockwave-flash" name="movie" width="130" height="129" title=""';
	flash+='data="' + newSrc + '" >';
	flash+='<param name="movie" value="' + newSrc + '" />';
    obj.innerHTML=flash;
}
initWeb();
