
function Job(employer, title, id)  {
  this.title = title;
  this.employer = employer;
  this.id = id;

  function getURL() {
    url = "http://www.careerbuilder.com/JobSeeker/Jobs/RedirectNewspaperJob.aspx?PartnerID=biloxi&JobID=";
    url += escape(this.id) + "&lr=cbcb_sh&siteid=cbcb_sh094";
    return url;
  }
  function getListing() {
  return "<li class='topjobs_item '>" +
    (this.employer.length > 0 ? "<span class='topjobs_employer'>" + this.employer + "</span><br />" : "") +
    "<a href='javascript:openTopJobsWin(\"" + this.url() + "\")'>" + this.title + "</a></li>\n";
  }
  this.url = getURL;
  this.listing = getListing;
}
jobs = new Array(
	new Job("","Auto Body Tech","1317081"),
	new Job("Hard Rock Hotel & Casino of Biloxi","Director of Security","1316631"),
	new Job("Hudson's Treasure Hunt","Assistant Manager","1317015"),
	new Job("Innovative Therapies","Physical Therapist","1316362"),
	new Job("","APARTMENT MANAGER","1316233"),
	new Job("","SERVERS","1316009"),
	new Job("","Service Technicians","1316186")
);
	