function toggle_body()
{
    if ($('content_holder').visible() ){   	
    	$('content_holder').hide();
    	$('tog_body').update('<a href="#" onclick="toggle_body();" >Mostra i contenuti</a>');
        return;
        
	}else{
        $('content_holder').show();
    	$('tog_body').update('<a href="#" onclick="toggle_body();" >Mostra la foto di Sfondo</a>');
    	return;
    }

}
