$( function() {
$( '.category' ).click( function() {
$( this ).toggleClass( 'active' )
$( this ).siblings( '.dropdown' ).toggle();
$( this ).find( '.indicator' ).toggleClass( 'indicator-active' );
return false;
} );
$( '#dock > li' ).stop().css('opacity', 0.5);
$( '#dock > li' ).hover( function() {
$( '.latest' ).stop().fadeOut( 'fast' );
$( this ).stop().children( 'span' ).fadeIn( 200 );
$( this ).stop().css('opacity', 1);
}).bind( "mouseleave", function() {
$( this ).stop().css('opacity', 0.5);
$( this ).stop().children( 'span' ).fadeOut( 200 );
} );
$( '#dock' ).bind( "mouseleave", function() {
$( '.latest' ).stop().fadeIn( 500 );
} );
});