// when the DOM is ready:
$(document).ready(function () {
  $('div.fade').hover(function() {
    // hover in
    var fade = $('> div', this);
    
      fade.fadeIn(330);
  }, function () {
	  
    // hover out
	var fade = $('> div', this);
      fade.fadeOut(330);
  });
});
