

   // Created    : 22nd of May 2008, 23:08 CET
   //         by : Tina Holmboe <tina@greytower.net>
   //
   // Updated    : 22nd of May 2008, 23:08 CET
   //         by : Tina Holmboe <tina@greytower.net>
   //
   function updateAds () {
    if ( document.getElementById ) {
     var lineNode = document.getElementById("line") ;

     if ( lineNode ) {
      var ads = ["a siteSifter subscription also gives you advanced project management capabilities?",
                 "a siteSifter subscription gives you access to many more report formats?",
                 "a siteSifter subscription is both cost-effective and simple?",
                 "that siteSifter Journal is a web application with no installation required?",
                 "that with a subscription you can test thousands of pages at low cost?",
                 "a siteSifter subscription let you have many more baselines and tests?",
                 "that siteSifter Journal come with solid documentation and support?"]

      var adsText = ads[Math.floor(Math.random() * (ads.length))] ;
      var newTextNode = document.createTextNode(adsText) ;
      lineNode.replaceChild(newTextNode, lineNode.firstChild) ;
     } //end if
    } //end if
   } //end function updateAds()
