﻿function toggleSectionText() {
    $('.headerText:visible').fadeOut('slow', function() {
        $(this).siblings().fadeIn('slow');
    });
}  

$(document).ready(function() {

    if ($.browser.msie) {
        $('.sectionBreak').css('height', '2px');
    }
    
    window.setInterval("toggleSectionText()", 10000);     
});


