function random_content(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='<b><a href="buying.php"><img src="images/frontadv/100satisfaction.gif" border="none"></b>'
mycontent[2]='<b><a href="forsalebyowner.php"><img src="images/frontadv/forsalebyowner.gif" border="none"></b>'
mycontent[3]='<b><a href="buying.php"><img src="images/frontadv/giftcard.gif" border="none"></b>'
mycontent[4]='<b><a href="dailyemailupdates.php"><img src="images/frontadv/listingsemail.gif" border="none"></b>'
mycontent[5]='<b><a href="selling.php"><img src="images/frontadv/listonrealtorcom.gif" border="none"></b>'
mycontent[6]='<b><a href="propertyorganizer.php"><img src="images/frontadv/savesearch.gif" border="none"></b>'
mycontent[7]='<b><a href="searchmls.php"><img src="images/frontadv/searchmls.gif" border="none"></b>'
mycontent[8]='<b><a href="prosoftware.php"><img src="images/frontadv/software.gif" border="none"></b>'

var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()