	$(document).ready(function() {
		$('div.homeFade').hover(function() {
			//Hover in... so reveal the image !
			
			var div = $('>div',this);
				div.fadeIn(500);
		},
		function() {
			//Hover out... so make the image disappear !
			
			var div = $('>div',this);
				div.fadeOut(300);
		});
		
		$('div.contactFade').hover(function() {
			//Hover in... so reveal the image !
			
			var div = $('>div',this);
				div.fadeIn(500);
		},
		function() {
			//Hover out... so make the image disappear !
			
			var div = $('>div',this);
				div.fadeOut(300);
		});		
});
