Sorry can you show me how to do this on multi pages instead of 1 page,
add_filter('avf_logo','av_change_logo');
function av_change_logo($logo)
{
if( is_page( 59 ) )
{
$logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
}
return $logo;
}