$(document).ready
(
	function()
	{
		/* BOXY */
		$('.boxy').boxy({title: "Glossary"});
		
		/* FONT RESIZE*/
		// Reset Font Size
		var originalFontSize = $('body').css('font-size');
		
		$(".rFont").click
		(
			function()
			{
	  			$('body').css('font-size', originalFontSize);
			}
		);
		
		// Increase Font Size
		$(".iFont").click
		(
			function()
			{
				var currentFontSize		= $('body').css('font-size');
				var currentFontSizeNum	= parseFloat(currentFontSize, 10);
				var newFontSize			= Math.round(currentFontSizeNum*1.2);
				$('body').css('font-size', newFontSize);
				return false;
			}
		);
		
		// Decrease Font Size
		$(".dFont").click
		(
			function()
			{
				var currentFontSize		= $('body').css('font-size');
				var currentFontSizeNum	= parseFloat(currentFontSize, 10);
				var newFontSize			= Math.round(currentFontSizeNum*0.8);
				$('body').css('font-size', newFontSize);
				return false;
			}
		);
	}
);
