function initthing()
{
  var p = document.getElementById('aaa1');
  var l = ['http://www.flgulfhomes.com/', 'Venice Florida Real Estate - ', 'http://www.bwbeach.com/', 'Delaware Real Estate - ', ' http://www.bob-taylor.com/', 'Los Angeles Real Estate - ' , 'http://www.ralphpratt.com', 'Fair Oaks Real Estate'];
  for(x = 0; x < l.length; x+=2)
  {
    var n = document.createElement('A');
    n.setAttribute('class', 'style13');
    n.setAttribute('href', l[x]);
    n.appendChild(document.createTextNode(l[x+1]));
    p.appendChild(n);
  }
}
YAHOO.util.Event.onDOMReady(initthing);