function makeArray(q){
for(i=1 ; i < q ; i++){this[i]=0}}
var total_measure_count = 18;
w=1;
measure_array = new makeArray(total_measure_count);
measure_array[1] = "
6-122
What is measure 6-122?Jail and Drug Enforcement Levy Coos.- 26%
- 74%
";
measure_array[2] = "6-123
What is measure 6-123?Limits Use of County Forest Funds Coos.- 49%
- 51%
";
measure_array[3] = "6-124
What is measure 6-124?Proposed Annex to Lakeside RFPD.- 43%
- 57%
";
measure_array[4] = "6-126
What is measure 6-126?Lakeside RFPD Annexation.- 63%
- 37%
";
measure_array[5] = "6-120
What is measure 6-120?Coos Bay School Bond Coos Bay School District 9.- 34%
- 66%
";
measure_array[6] = "6-125
What is measure 6-125?Public Health Operating Levy COOS.- 32%
- 68%
";
measure_array[7] = "54
What is measure 54?Standardizes voting eligibility for school board elections with other state and local elections.- 72%
- 28%
";
measure_array[8] = "55
What is measure 55?Changes operative date of redistricting plans; allows affected legislators to finish term in original district.- 77%
- 23%
";
measure_array[9] = "56
What is measure 56?Provides that May and November property tax elections are decided by majority of voters voting.- 55%
- 45%
";
measure_array[10] = "57
What is measure 57?Increases sentences for drug trafficking, theft against elderly and specified repeat property and identity theft crimes; addiction treatment for certain offenders.- 61%
- 39%
";
measure_array[11] = "58
What is measure 58?Prohibits teaching public school student in language other than English for more than two years.- 46%
- 54%
";
measure_array[12] = "59
What is measure 59?Creates an unlimited deduction for federal income taxes on individual taxpayers' Oregon income-tax returns.- 37%
- 63%
";
measure_array[13] = "60
What is measure 60?Teacher 'classroom performance,' not seniority, determines pay raises; 'most qualified' teachers retained, regardless of seniority.- 40%
- 60%
";
measure_array[14] = "61
What is measure 61?Creates mandatory minimum prison sentences for certain theft, identity theft, forgery, drug, and burglary crimes.- 51%
- 49%
";
measure_array[15] = "62
What is measure 62?Allocates 15% of lottery proceeds to public safety fund for crime prevention, investigation, prosecution.- 41%
- 59%
";
measure_array[16] = "63
What is measure 63?Exempts specified property owners from building permit requirements for improvements valued at/under 35,000 dollars.- 47%
- 53%
";
measure_array[17] = "64
What is measure 64?Penalizes person, entity for using funds collected with "public resource" (defined) for "political purpose" (defined).- 51%
- 49%
";
measure_array[18] = "65
What is measure 65?Changes general election nomination processes for major/minor party, independent candidates for most partisan offices.- 34%
- 66%
";
function showMeasures() {
if (w > total_measure_count) { w=1; };
document.getElementById("measure_content").innerHTML = measure_array[w];
dots_off();
if(document.getElementById('measure_' + w)){
document.getElementById('measure_' + w).className = 'on';
}
w+=1;
rotate_interval = window.setTimeout('showMeasures()', 6000);
}
function goback(){
w -= 2;
if (w == 0) { w=total_measure_count; };
document.getElementById("measure_content").innerHTML = measure_array[w];
dots_off();
if(document.getElementById('measure_' + w)){
document.getElementById('measure_' + w).className = 'on';
}
w+=1;
clearTimeout(rotate_interval);
}
function goahead(){
if (w > total_measure_count) { w=1; };
document.getElementById("measure_content").innerHTML = measure_array[w];
dots_off();
if(document.getElementById('measure_' + w)){
document.getElementById('measure_' + w).className = 'on';
}
w+=1;
clearTimeout(rotate_interval);
}
function dots_off(){
for(i=1;i<(total_measure_count+1);i++){
if(document.getElementById('measure_' + i)){
document.getElementById('measure_' + i).className = 'off';
}
}
}
function rollover(e){
var img_src = e.childNodes[0].src ;
var img_split = img_src.split("_off") ;
if ( img_split.length == 1 ){
img_split = img_src.split("_on") ;
e.childNodes[0].src = img_split[0] + '_off' + img_split[1] ;
}else{
e.childNodes[0].src = img_split[0] + '_on' + img_split[1] ;
}
}
window.onload = showMeasures;