/* hide sIFR headers properly in safari, .hide() doesn't work */
jQuery('h2.sifr').css('visibility', 'hidden');

/* not sure why these were placed, but they don't do anything. keeping to prevent mis-call */
function tb_refresh() {
}
function jq_refresh() {
}
function jq_reinit() {
}

jQuery(function(){
  jQuery('.t_home ul li a > img').hover(function(){
    jQuery(this).parent().parent().addClass('hover');
  }, function(){
    jQuery(this).parent().parent().removeClass('hover');
  });
});
