<!--

function displayJane() {

// newer browsers
var v4b = (parseInt(navigator.appVersion) >= 4);

if (v4b) {

var PREFIX_URL = (location.href.substring(0,document.URL.lastIndexOf(document.domain)));
var INDEX_URL = PREFIX_URL+document.domain+"/";
if ((document.domain == "littlesally")||(document.domain == "localhost")) {
  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/freelancers/";
  //var imgwidth="160";
  //var imgheight="100";
  var imgalt="Worldpress.org Freelancers - Find Freelance Pros!";
  var imgsrc=INDEX_URL+"aaron/freelance_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) {
	} 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
}
}

displayJane();

//-->