
$(document).ready(function() { 
        $('ul.sf-menu').superfish({
        
        	animation:   {opacity:'show',height:'show'},
        	
        
        }); 
        
        // Hide show sections of diary
        
        $('h3.toggle').not(":first").each( function(){
        
        	$(this).next().hide();
        	$(this).addClass("closed");
        
        });
        
        $('h3.toggle').first().addClass("open");
        
        $('ul.nonJSnav').hide();
        $('p.top').hide();
        $('div.section').addClass('alignLeft');
        $('h3.toggle').click( function(){
        	
        	$(this).next().slideToggle('slow');
        	$(this).toggleClass('open');
        	$(this).toggleClass('closed');
        
        });
        
        $('.images').galleria();
    });
