$( document ).ready( function ()
{
$( '#navigation' ).scrollFollow();
}
);
$(function() {
  $('div.collapsePanelHeader').toggle(
    function() {
      $(this).next('div.navicontent').show('slow');
      $(this).children('div.headerContent').addClass('expanded');
    },
    function() {
      $(this).next('div.navicontent').hide('slow');
      $(this).children('div.headerContent').removeClass('expanded');
    });
});
Shadowbox.init({
    language: 'en',
    players:  ['img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv']
});