jQuery(document).ready(function(){
	jQuery.fn.fadeToggle = function(speed, easing, callback) { 
   return this.animate({opacity: 'toggle'}, speed, easing, callback); 
};   
jQuery(".hoverFade").hover(
  function () {
    jQuery(this).find('div').fadeIn(600);
  },
  function () {
    jQuery(this).find('div').fadeOut(600);
  }
)
jQuery(".clickFade").click(function () {
    jQuery(this).find('div').fadeToggle(600);
}
)
});
