$(document).ready(function() {
  jQuery('#footerLink a').hover(function(){
	jQuery('.footerLinkText').show();
	}, function(){
		jQuery('.footerLinkText').hide();
	});
});
