jQuery.fontresize = function(amount)
{
	
	if($.cookie('HasWarned') != 'yes')
	{
		$.cookie('HasWarned', 'yes');

		var takeToAccessibility = confirm('It is better to resize the font using your browser. Would you like to be shown how to do that?');
		return takeToAccessibility;
	}
	else
	{
		jQuery.each($('h1, h2, h3, h4, div, small, p, a'), function()
		{
			var amountToChange = (parseInt($(this).css('font-size').slice(-0, 2))+parseInt(amount));
			if(amountToChange != -1)
			{
				$(this).css('font-size', amountToChange +'px');
			}
		});
	}
	
	return false;
}