// JavaScript Document$(document).ready(function() {						   	// find the div.fade elements and hook the hover event	$('.fadeThis').hover(function() {		// on hovering over find the element we want to fade *up*				// if the element is currently being animated (to fadeOut)...					//fade.fadeIn(300);			 $('> .hover' ,this).fadeIn(100);			}, function () {							//fade.fadeOut(300);			 $('> .hover' ,this).fadeOut(100);			});	// get rid of the text	$('.fadeThis > .hover').empty();	});
