$(document).ready(
	function() {
		$('#jump-online').hover(function() {
		$(this).find('div#jump-online-fade').stop(false,true).fadeIn(500);
	},
	function() {
		$(this).find('div#jump-online-fade').stop(false,true).fadeOut(1000);
	});
});
$(document).ready(
	function() {
		$('#who-we-are').hover(function() {
		$(this).find('div#who-we-are-fade').stop(false,true).fadeIn(500);
	},
	function() {
		$(this).find('div#who-we-are-fade').stop(false,true).fadeOut(1000);
	});
});
$(document).ready(
	function() {
		$('#what-we-do').hover(function() {
		$(this).find('div#what-we-do-fade').stop(false,true).fadeIn(500);
	},
	function() {
		$(this).find('div#what-we-do-fade').stop(false,true).fadeOut(1000);
	});
});
$(document).ready(
	function() {
		$('#what-weve-done').hover(function() {
		$(this).find('div#what-weve-done-fade').stop(false,true).fadeIn(500);
	},
	function() {
		$(this).find('div#what-weve-done-fade').stop(false,true).fadeOut(1000);
	});
});
$(document).ready(
	function() {
		$('#how-to-find-us').hover(function() {
		$(this).find('div#how-to-find-us-fade').stop(false,true).fadeIn(500);
	},
	function() {
		$(this).find('div#how-to-find-us-fade').stop(false,true).fadeOut(1000);
	});
});