var jobs = new Array();
jobs[0] = new featuredJob('4100669','Supervisor/Team Lead','Verizon Business');
jobs[1] = new featuredJob('4111922','Customer Service Representative','US Cellular');
jobs[2] = new featuredJob('4112558','Project Manager','Communications Engineering Co');
jobs[3] = new featuredJob('4113432','Crop Production Foreman','Amana Farms');
jobs[4] = new featuredJob('4113441','Dietary Positions','Iowa City Rehabilitation');
jobs[5] = new featuredJob('4119477','Account Support Advisor','GreatAmerica Leasing Co');
jobs[6] = new featuredJob('4119484','Partner Sales Manager','SecurityCoverage');
jobs[7] = new featuredJob('4121830','Funeral Director/Embalmer','Iowa Donor Network');
jobs[8] = new featuredJob('4121833','Laboratory Technician','PMX Industries');
jobs[9] = new featuredJob('4121836','Account Manager','Infinity Contact');
jobs[10] = new featuredJob('4124805','Service Technician','ADT Security Services Inc');
jobs[11] = new featuredJob('4124806','Maintenance Technician','Jim Feight AMI, Inc.');
jobs[12] = new featuredJob('4124815','Sales Professional','GreatAmerica Leasing Co');
jobs[13] = new featuredJob('4124820','Production Team Leader','Alside Window Company');
jobs[14] = new featuredJob('4124822','Certified Nursing Assistant','Iowa City Rehabilitation');
jobs[15] = new featuredJob('4124823','Inbound Customer Service Representatives','Thomas L. Cardella and Associates');
jobs[16] = new featuredJob('4127703','Assistant Database Administrator/Oracle','University of Northern Iowa');
jobs[17] = new featuredJob('4131414','User Experience Designer','Geonetric Technologies');
jobs[18] = new featuredJob('4131416','Field Sales Manager','Classified Ventures');
jobs[19] = new featuredJob('4133564','Research Assistant III','University of Iowa');
jobs[20] = new featuredJob('4133569','Grant Specialist','University of Northern Iowa');
jobs[21] = new featuredJob('4133574','Assistant Research Scientist','University of Iowa');
jobs[22] = new featuredJob('4133719','Mold Design Engineer','MSI Mold Builders');
jobs[23] = new featuredJob('4136136','.NET Application Developer','Geonetric Technologies');
jobs[24] = new featuredJob('4136141','Accounting Manager','Geonetric Technologies');
jobs[25] = new featuredJob('4136144','Loan Processor','Farmers State Bank');
jobs[26] = new featuredJob('4137614','Registered Nurse','Hallmark Care Center');
jobs[27] = new featuredJob('4137615','Network Communications Engineer - Level I','University of Iowa');
jobs[28] = new featuredJob('4137616','Network Communications Engineer I','University of Iowa');
jobs[29] = new featuredJob('4137618','System Administrator','University of Iowa');
jobs[30] = new featuredJob('4137626','Assistant Operations Manager','Affina');
jobs[31] = new featuredJob('4137636','Client Relationship Assistant','Robert W. Baird and Co. Inc');
jobs[32] = new featuredJob('4137637','Senior Accountant','University of Iowa');
jobs[33] = new featuredJob('4142935','Collections Customer Service Representative','Toyota Financial Services');
jobs[34] = new featuredJob('4142937','Customer Loyalty Advocate','Toyota Financial Services');
jobs[35] = new featuredJob('4143294','Subject Matter Expert - Avionic Maintenance','');
jobs[36] = new featuredJob('4144447','Senior Sales Engineer','Kurtz Communications');
jobs[37] = new featuredJob('4148962','Maintenance I','Allen Memorial Hospital');
jobs[38] = new featuredJob('4149681','Associate Research Scientist','University of Iowa');
jobs[39] = new featuredJob('4149682','Electronics Technician II/Access Control Technician','University of Iowa');
jobs[40] = new featuredJob('4149684','Program Supervisor','Community Care Inc');
jobs[41] = new featuredJob('4152920','Account Management Position','BVS Performance Systems');
jobs[42] = new featuredJob('4152924','Office Depot Inside Sales Manager','Thomas L. Cardella and Associates');
jobs[43] = new featuredJob('4156016','Data and Technical Services Specialist','US Cellular');
jobs[44] = new featuredJob('4156017','Data and Technical Services Specialist','US Cellular');
jobs[45] = new featuredJob('4156018','Data & Technical Services Specialist','US Cellular');
jobs[46] = new featuredJob('4156022','Sales Position','Mediacom Communications Corporation');
jobs[47] = new featuredJob('4159911','Sales Agent','');
jobs[48] = new featuredJob('4160334','Substitute Bus Driver','North Linn Community Schools');
jobs[49] = new featuredJob('4160335','Dispatch Assistant','United Dispatch Of Iowa');
fisherYates ( jobs );
function open_win(adnum) {
window.open("http://www.iowatalks.com/utilities/redmatch/featured_jobsBlank.html?ad=" + adnum,"_blank","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=690, height=375");
}
function featuredJobs(siteID) {
var tbody = document.getElementById("featuredJobsTBody");
for(i=0;i<15;i++) {
var tr = document.createElement('tr');
var td = document.createElement('td');
/*
var html = "";
html += ""+jobs[i].JobTitleText+"";
if(jobs[i].CompanyName != " ") {
html += "
"+jobs[i].CompanyName+"";
}
*/
var html = "";
html += ""+jobs[i].JobTitleText+"";
if(jobs[i].CompanyName != " ") {
html += "
"+jobs[i].CompanyName+"";
}
td.innerHTML = html;
tr.appendChild(td);
tbody.appendChild(tr);
}
var tr = document.createElement('tr');
var td = document.createElement('td');
td.innerHTML = " ";
tr.appendChild(td);
tbody.appendChild(tr);
}
function featuredJob(adNum,jobTitle,coName) {
this.CompPositionId = adNum;
this.JobTitleText = jobTitle;
this.CompanyName = coName;
}
function fisherYates ( myArray ) {
var i = myArray.length;
if ( i == 0 ) return false;
while ( --i ) {
var j = Math.floor( Math.random() * ( i + 1 ) );
var tempi = myArray[i];
var tempj = myArray[j];
myArray[i] = tempj;
myArray[j] = tempi;
}
}
featuredJobs("743");