$(document).ready(function() {

  $('#nav-sub1 li.open a, #nav-sub1 li.open strong').prepend('+ ');

  $('#fotos a').mouseover( function () { $('#statement').empty(); $('#statement').append($(this).next('.statement').html()); } ).mouseout( function () { $('#statement').empty(); } ).click ( function () { return false; } );
  
  var sitename = $('#col3_header h2').text();  
  $('#nav-main ul li a').mouseover( function () { $('#col3_header h2').contents().replaceWith($(this).children('span').text()); } ).mouseout( function () { $('#col3_header h2').contents().replaceWith(sitename); } )
  
});