$(document).ready(function() {  
    $('.node.teaser').hover(function() {
      $(this).find('.content').show();
      $(this).find('.node-title').hide();
      $(this).find('.node-title-int').show();
      $(this).find('h2').css('color','#000000');
      $(this).css('background','#fafafa');
    },function() {
      $(this).find('.content').hide();
      $(this).find('.node-title').show();
      $(this).find('.node-title-int').hide();      
      $(this).find('h2').css('color','#d66808');
      $(this).css('background','none');
    });
});