<!--

function displayrightbarAaron() {

// newer browsers
var v4b = (parseInt(navigator.appVersion) >= 4);

if (v4b) {

var PREFIX_URL = (location.href.substring(0,document.URL.indexOf(document.domain)));
var INDEX_URL = PREFIX_URL+document.domain+"/";
if (document.domain == "littlesally") {
  var INDEX_URL = INDEX_URL+"wpr/";
}

  // set number of ads to cycle through
  var numberofAarons = 1;
  
  // don't change these settings
  var timenow = new Date()
  var secondsnow = timenow.getSeconds()
  var Aaronnow = secondsnow % numberofAarons;
  Aaronnow +=1;

  // set common/default ad variables
  var aurl="http://www.worldpress.org/jobs/";
  //var imgwidth="160";
  //var imgheight="75";
  var imgalt="Worldpress.org Jobs Marketplace";
  var imgsrc=INDEX_URL+"aaron/jobs_160x75.jpg";

  // customize any of the ad variables from above for each ad as needed
  // number of ads detailed here should equal the 'numberofads' variable set above
  if (Aaronnow==1) {
    // default
  }
  else if (Aaronnow==2) {
    imgsrc=INDEX_URL+"aaron/free-mag-160x75(2).gif";
  }
  else if (Aaronnow==3) {
    imgsrc=INDEX_URL+"aaron/free-mag-160x75(3).gif";
  }
  else if (Aaronnow==4) {
    imgsrc=INDEX_URL+"aaron/free-mag-160x75(4).gif";
  } else {
    // ignore
  }
  
  // write the ad to the page
  document.write("    <p><a href=\"" + aurl + "\">"
    + "    <img src=\"" + imgsrc + "\" alt=\"" + imgalt + "\" border=\"0\" />"
    + "</a></p>\n");

} else {
  // ignore
}
}

displayrightbarAaron();

//-->