$(document).ready(function(){
  $('#twitter').bind({
    mouseover: function() {
      $('#msg').html('Follow Dr. Gaier');
    },
    mouseout: function() {
      $('#msg').html(''); 
    }  
  });
  $('#facebook').bind({
    mouseover: function() {
      $('#msg').html('Join Dr. Gaier');
    },
    mouseout: function() {
      $('#msg').html(''); 
    }  
  });
  $('#wordpress').bind({
    mouseover: function() {
      $('#msg').html('The Natural Health Blog');
    },
    mouseout: function() {
      $('#msg').html(''); 
    }  
  });
  $('#in').bind({
    mouseover: function() {
      $('#msg').html('Dr Gaier\'s network');
    },
    mouseout: function() {
      $('#msg').html(''); 
    }  
  });
  $('#twitter_f').bind({
    mouseover: function() {
      $('#msg_f').html('Follow Dr. Gaier');
    },
    mouseout: function() {
      $('#msg_f').html(''); 
    }  
  });
  $('#facebook_f').bind({
    mouseover: function() {
      $('#msg_f').html('Join Dr. Gaier');
    },
    mouseout: function() {
      $('#msg_f').html(''); 
    }  
  });
  $('#wordpress_f').bind({
    mouseover: function() {
      $('#msg_f').html('The Natural Health Blog');
    },
    mouseout: function() {
      $('#msg_f').html(''); 
    }  
  });
  $('#in_f').bind({
    mouseover: function() {
      $('#msg_f').html('Dr Gaier\'s network');
    },
    mouseout: function() {
      $('#msg_f').html(''); 
    }  
  });
});
