$(document).ready(function() {
	$('#welcometext').hide();
	$('#h1-welcome').css('cursor', 'pointer');
	$('#h1-welcome').click(function() {
		if ($('#welcometext').is(':visible'))
			$('#welcometext').hide();
		else 	
			$('#welcometext').show();
	});
});
