	$(function(){
		
		// Gets stored cookie called 'fontSize' and assigns it to the variable called 'fontSize
		var fontSize = $.cookie('fontSize');
		
		// Parses the cookie
		var fontSize = parseFloat(fontSize, 12);
		
		// Assigns the body's font size to the 'fontSize' variable
		//$('div#content').css('font-size', fontSize);
		
		// When an 'a' tag is clicked
		/*$('a').click(function(){
			
			// If the 'a' tag has an ID of 'large'
			if(this.id == 'large') {
			
				// sets the variable 'size' to 14 to perform the on screen change
				var size = 14;
				// sets the cookie 'fonSize' to 14
				$.cookie('fontSize', '14', { path: '/' });
				
			}
			
			// If the 'a' tag has an ID of 'small'
			else if (this.id == 'small'){
				
				// sets the variable 'size' to 12 to perform the on screen change
				var size = 10;
				// sets the cookie 'fonSize' to 14
				$.cookie('fontSize', '10', { path: '/' });
				
			}
			
			else if (this.id == 'default'){
				
				// sets the variable 'size' to 12 to perform the on screen change
				var size = 12;
				// sets the cookie 'fonSize' to 14
				$.cookie('fontSize', '12', { path: '/' });
				
			}

			$('div#content').css('font-size', size);
			 
		});*/
		
		// When an 'a' tag is clicked
		$('a#large').click(function(){

				var size = 14;

			$('div#content').css('font-size', size);
			 
		});
		
			
	});