/*	group-health-quotes-california-1_js.js	*/
function displayThankYou() {
        document.getElementById('inProgress').style.display = 'none';
	document.getElementById('background-blanck').style.display = 'none';
	document.getElementById('innerOneColumn').style.display = 'block';
}


function displayInProgress() {
    var div_count = $('div#dots div').length;

    var count = 0;
    var idinterval;
    function slideDots() {
        if(count>=div_count){
            $('div#dots div:nth-child('+div_count+')').show();
            clearInterval(idinterval);
            setTimeout("displayThankYou()",2000);
        } else {
            $('div#dots div:nth-child('+count+')').show();
            count++;
        }
    }

    idinterval = setInterval(slideDots, 1000);

}

