var jobs = new Array();
jobs[0] = new featuredJob('4189912','Programmer/Report Writer','Mount Mercy College');
jobs[1] = new featuredJob('4189918','Internal Auditor','Cedar Rapids Community School District');
jobs[2] = new featuredJob('4189919','Administrative Assistant','Houser Enterprises Inc');
jobs[3] = new featuredJob('4191578','Sales Manager','SecurityCoverage');
jobs[4] = new featuredJob('4191579','Software Engineer','Innovative Software');
jobs[5] = new featuredJob('4191585','Executive Director','Englert Civic Theatre');
jobs[6] = new featuredJob('4193969','Sales Professional','Mediacom Communications Corporation');
jobs[7] = new featuredJob('4193971','Credit Analyst','GreatAmerica Leasing Co');
jobs[8] = new featuredJob('4193973','Trust Officer','First Community Trust');
jobs[9] = new featuredJob('4193974','Financial Aid Counselor','University of Northern Iowa');
jobs[10] = new featuredJob('4196345','Applications Development/Support Level III Position','University of Iowa');
jobs[11] = new featuredJob('4196348','Computer Systems Analyst','MSU Software Consultants');
jobs[12] = new featuredJob('4196349','Research Assistant III','University of Iowa');
jobs[13] = new featuredJob('4198505','Advanced Registered Nurse Practitioner','University of Iowa');
jobs[14] = new featuredJob('4198509','Auto Glass Technician','IGD Industries');
jobs[15] = new featuredJob('4198510','Systems Administration and Systems Programming - Level II or III','University of Iowa');
jobs[16] = new featuredJob('4198517','DirecTV Home Entertainment Sales Representative','Thomas L. Cardella & Associates');
jobs[17] = new featuredJob('4204949','Associate Director - Grants Development','University of Iowa');
jobs[18] = new featuredJob('4204950','Automotive Positions','Billion Honda');
jobs[19] = new featuredJob('4204953','Senior Accountant','AEGON USA, Inc.');
jobs[20] = new featuredJob('4204954','Sr. Accountant Analyst','AEGON USA');
jobs[21] = new featuredJob('4204958','Home Health Care Manager','Mercy Iowa City');
jobs[22] = new featuredJob('4204962','Administrative Assistant II/Field Operations Manager','University of Iowa');
jobs[23] = new featuredJob('4204968','System Administrator','Mount Mercy College');
jobs[24] = new featuredJob('4204971','Director of Sales','Geonetric Technologies');
jobs[25] = new featuredJob('4207321','Technical Support Representative','SecurityCoverage');
jobs[26] = new featuredJob('4211870','Developer','Infinity Contact');
jobs[27] = new featuredJob('4212244','Account Support Advisor','GreatAmerica Leasing Co');
jobs[28] = new featuredJob('4214043','Litigation Specialist','GreatAmerica Leasing Co');
jobs[29] = new featuredJob('4223231','Collections Customer Service Representative','Toyota Financial Services');
jobs[30] = new featuredJob('4223232','Clinical Research Assistant','University of Iowa');
jobs[31] = new featuredJob('4223234','Internet Sales Position','Pat McGrath Chevyland');
jobs[32] = new featuredJob('4234652','EM Physician Assistant/Nurse Practitioner','Emergency Consultants Inc');
jobs[33] = new featuredJob('4234653','Leadership Position','United Way of East Central Iowa');
jobs[34] = new featuredJob('4237482','Administrative Accountant','University of Iowa');
jobs[35] = new featuredJob('4240271','Accounting Coordinator','Infinity Contact');
jobs[36] = new featuredJob('4240274','Program Assistant - Pre Pharmacy Advisor/Recruitment Coordinator','University of Iowa');
jobs[37] = new featuredJob('4243099','Field Safety and Health Coordinator','MJ Electric LLC');
jobs[38] = new featuredJob('4243110','Mental Health Therapist','Keys To Living');
jobs[39] = new featuredJob('4245044','Pricing Analyst','Apache Hose and Belting Co., Inc');
jobs[40] = new featuredJob('4250868','Utility Operator','Hubbard Milling Co');
jobs[41] = new featuredJob('4250872','Senior Aix Unix Systems Administrator','University of Iowa');
jobs[42] = new featuredJob('4250887','Data & Technical Services Specialist','NAS Recruiting Communications');
jobs[43] = new featuredJob('4251677','Programmer/Analyst','Geater Machining AND Mfg Co');
jobs[44] = new featuredJob('4251678','Tractor/Trailer Driver','Fedex Freight');
jobs[45] = new featuredJob('4255269','Chief Engineer','Crowne Plaza Hotels');
jobs[46] = new featuredJob('4259585','Senior Programmer Analyst','AEGON USA');
jobs[47] = new featuredJob('4259588','Agency Apprentice','State Farm Insurance');
jobs[48] = new featuredJob('4259600','DirecTV Home Entertainment Sales Representative','Thomas L. Cardella & Associates');
jobs[49] = new featuredJob('4263151','Senior Business Systems and Testing Analyst','AEGON USA');
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");