jQuery(document).ready(function($){
	$('a').removeAttr('title');
  $('a[rel=external]').click(function(){
    window.open(this.href);
    return false;
  });
	Cufon.replace('.fugu,.feature h6', { fontFamily: 'Fugu' });
	Cufon.replace('h2, .feature h3, .feature h4', { fontFamily: 'Helvetica Neue' });
	Cufon.replace('.goudy', { fontFamily: 'Goudy Old Style' });
  
  
  $('ul.tree li:not(:has(ul))').addClass('blockli');
  $('#events-calendar').wrap('<ul />');
  if($('.home .gallery').length){
  $('.home .gallery br').remove();
    $('.home .gallery a').each(function(){
      $(this).attr('href', $('img', this).attr('alt'));
    });
  $('.home .gallery').removeAttr('id').cycle();//{timeout:0});
  }
});