function load_efx () {
  $('a img').each(function(index) {
    if ($(this).attr('title') != "") {
      $(this).tipsy({fade: false, gravity: 'n'});
    };
  });
  
  $('#logos a img').tipsy({fade:true, gravity: 's'});
  
  $('a.tip').tipsy({fade:false,gravity:'w'})
  
  $('.posts .item').hover(function() {
    $(this).animate({backgroundColor: '#FFF9C5'}, 'fast')
  }, function() {
    $(this).animate({backgroundColor: '#fff'}, 'fast')
  });
  
  if ($.support.boxModel) {
    $('#logos a').hover(function() {
      $(this).animate({opacity: '.5'});
    }, function() {
      $(this).animate({opacity: '1'});
    });
  };
  
  
  $('div#photos div.posts div.item table tbody tr td').children('a').each(function(index) {
    $(this).addClass('img');
    album_name = "View: " + $(this).children('img').attr('alt') + " Photo Album";
    $(this).attr('target', '_parent');
    $(this).children('img').attr('title', album_name);
    $(this).children('img').tipsy({fade:false,gravity:'w'});
  });
  
}

$(document).ready(function() {
  load_efx();
});
