$( document ).ready( function( ){
    
    // slide twitter div down, hides the jump in of the twitter updates
    $( 'div#twitter_div' ).slideDown( 800 );
    
    // pulse yellow notice
    //$( 'div#notice' )   .animate( { backgroundColor: '#FFFF66' }, 500 )
    //                    .animate( { backgroundColor: '#fbffe6' }, 1000 );
     
    // show and hide #fine_print                         
    $( '#show_fine_print' )   .click( function( ){ 
        $( 'div#fine_print' )   .slideDown( 800 );
    });
	 
    $( '#hide_fine_print_top a, #hide_fine_print_bottom a' ) .click( function( ){ 
        $( '#fine_print' ).slideUp( 800 );
    });
                            
});