﻿document.write('<script type="text/javascript" src="http://www.in.gov/ai/rightnow/syndication_widget/arss.js"></script>');
function faqload(){
    document.getElementById('want').style.display='none';document.getElementById('faq').style.display='none';
 
    var reader2 = RNTFeed.getReader();
    reader2.uri='http://iot.custhelp.com/cgi-bin/iot.cfg/php/enduser/opensearch.php?p_cv=2.80';
    reader2.pagesize = 10;
    reader2.navigation = "off";
    reader2.searchbox = "off";
    reader2.render("faqdivload");
    reader2.search("");
    var timeX = setTimeout("document.getElementById('want').style.display='block'", 500);
}
 

//checks to make sure the user entered "Indiana" as a state on http://www.in.gov/gov/2559.htm
function statecheck()
{
if (this.value=='IN') document.getElementById('stoplayer2').style.display = 'none'; else document.getElementById('stoplayer2').style.display = 'block';
}
 
//on the Motorcycle subsite, changes the linkheader 'motorcycle' to say 'motorcycle home page'
function motoLink(){
var x = document.getElementsByClassName('linkhdr');
    for(i=0;i<x.length;i++){
        if (x[i].firstChild.innerHTML=='Motorcycle'){
        x[i].firstChild.innerHTML='Motorcycle Home Page';
        }
    }
}