$( function() {
	$( '.category' ).click( function() {
		$( this ).toggleClass( 'active' )
		$( this ).siblings( '.dropdown' ).toggle();
		$( this ).find( '.indicator' ).toggleClass( 'indicator-active' );
		return false;
	} );
			
	$( '#dock > li' ).hover( function() {
		//$( '.latest' ).fadeOut( 'fast' );
		$( this ).addClass( 'dock-active' );
		//$title = $( this ).children( 'span' ).html();
		//$( '.latest' ).html($title).fadeIn( 200 );
	}).bind( "mouseleave", function() {		
		$( this ).removeClass( 'dock-active' );	
		//$( '.latest' ).fadeOut( 200 );
	} );
			
	/* $( '#dock' ).bind( "mouseleave", function() {
		$( '.latest' ).fadeOut( 1000 );
	} ); */
} );
