$(document).ready(function() {
		$('.grant-app a').hover(function() {
			$('#grant.hover-text').show();
		},
		function(){
			$('#grant.hover-text').hide();
		});
		$('.sponsorship-app a').hover(function() {
			$('#sponsorship.hover-text').show();
		},
		function(){
			$('#sponsorship.hover-text').hide();
		});
	});
