function random_content(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="520" height="95"><param name="menu" value="false"><param name="movie" value="images/header_hand.swf"><param name="wmode" value="transparent"><param name="quality" value="high"><embed src="images/header_hand.swf" quality="high" menu="false" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="520" height="95" wmode="transparent"></embed></object>'
mycontent[2]='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="520" height="95"><param name="menu" value="false"><param name="movie" value="images/header_manlaptop.swf"><param name="wmode" value="transparent"><param name="quality" value="high"><embed src="images/header_manlaptop.swf" quality="high" menu="false" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="520" height="95" wmode="transparent"></embed></object>'
mycontent[3]='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="520" height="95"><param name="menu" value="false"><param name="movie" value="images/header_peopletable.swf"><param name="wmode" value="transparent"><param name="quality" value="high"><embed src="images/header_peopletable.swf" quality="high" menu="false" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="520" height="95" wmode="transparent"></embed></object>'
var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()