//<![CDATA[


$(document).ready ( function ( ) {

    $('#logo').click ( function ( ) {
    
        $('#content').fadeIn ( 500 /* tempo del fade in */ ) ;
    
    }) ;
	
	$('#close').click ( function ( ) {
    
        $('#content').fadeOut ( 500 /* tempo del fade in */ ) ;
    
    }) ;

});
