/*
	AUTHOR: ANDREA CANTON
	AUTHOR WEBSITE: http://andreacanton.com
*/

$(function(){
	$('#header a').hover(
			function(){
				$('#home-link-title').show(); 
			}, 
			function(){
				$('#home-link-title').hide();
			});
});
