
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=Miami&JobID=";
    url += escape(this.id) + "&lr=cbcb_mh&siteid=cbcb_mh094";
    return url;
  }
  function getListing() {
  return "<li class='topjobs_item '>" +
    (this.employer.length > 0 ? "<span class='topjobs_employer'>" + this.employer + "</span>, " : "") +
    "<a href='javascript:openTopJobsWin(\"" + this.url() + "\")'>" + this.title + "</a></li>\n";
  }
  this.url = getURL;
  this.listing = getListing;
}
jobs = new Array(
	new Job("Hotel and Rest. Supply Company","OUTSIDE SALES","5677400-20090210"),
	new Job("none","INFUSION NURSE","5413500-20090208"),
	new Job("ECLIPSE MEDICAL DIAGNOSTICS","Neurologist - Board Cert.","5612000-20090208"),
	new Job("Confidential","P/T Legal Secretary","5369300-20090208"),
	new Job("Confidential","RESIDENTIAL ASSISTANT","5464700-20090208")
);


