var to_show=1;
function change_quote_text(){
    //window.alert(document.getElementById('quote').innerHTML);
    //window.alert(document.getElementById('quote').InnerHTML == '"2009 is almost guaranteed to create more changes in HR policy and law than in the entire eight years of the Bush administration."<br>- <em>Joe Beachboard, Esq., LEAP moderator</em>');
    //if (document.getElementById('quote').innerHTML == "" || document.getElementById('quote').InnerHTML == '"2009 is almost guaranteed to create more changes in HR policy and law than in the entire eight years of the Bush administration."<br>- <em>Joe Beachboard, Esq., LEAP moderator</em>'){
    if (to_show==1){
        //window.alert('first');
        to_show=2;
        document.getElementById('quote').innerHTML = '"...the possibility of the most sweeping HR-related changes in 30 years..."<br />- <em>The Society for Human Resource Management</em>';
    }else{
        //window.alert('second');
        to_show=1;
        document.getElementById('quote').innerHTML = '"2009 is almost guaranteed to create more changes in HR policy and law than in the entire eight years of the Bush administration."<br />- <em>Joe Beachboard, Esq., LEAP moderator</em>';
    }
    setTimeout("change_quote_text()",9500);
}
