$(function(){			   
    topnav($('#top-nav')); // top navigation
	
	// function to highlight the selected item on the static nav
    $("ul#top-nav > li > a").each( function(){
        if($(this).attr('href') == '/' + page_name){
            $(this).parent().attr('class', 'active');
        }    
    });
    
    $('a.toggle').toggle( 
        function() { 
            $('#content').slideDown(); 
            $(this).html('Read less');
        }, 
        function() { 
            $('#content').slideUp(); 
            $(this).html('Read more');
        }
    );
    $('.slides_container') 
        .after('<div id="bannerNav">') 
        .cycle({ 
            fx:     'fade', 
            speed:  'slow', 
            timeout: 5000, 
            pager:  '#bannerNav' 
    });
    
    $(function() {
        $('#gallery a').lightBox();
    });

})

