$(function(){

	dep = $('#section1');
    dep.fadeIn('slow');
    
    $('#next_dep').click(function(){
        $(dep).hide();
        dep = $(dep).next("div[id^='section']");
        if(typeof $(dep).attr('id') == 'undefined' || $(dep).attr('id').substring(0, 7) != 'section')
            dep = $('#section1');
        $(dep).show();
    });

    $('#prev_dep').click(function(){
        $(dep).hide();
        dep = $(dep).prev("div[id^='section']");
        if(typeof $(dep).attr('id') == 'undefined' || $(dep).attr('id').substring(0, 7) != 'section')
            dep = $('#section1').nextAll(':last');
        $(dep).show();
    });
})
