// JavaScript Document



	$(document).ready(function() {
							   
		$('a.increase').click(function() {
									   
			$('.content *').each(function() {
														 
				var currentSize = $(this).css('fontSize').substring(0, 2);
				
				var newSize = parseFloat(currentSize) + 1;
				
				$(this).css('fontSize', newSize +'px')
				
			});
			
			return false;
				
		});
		
		$('a.decrease').click(function() {
									   
			$('.content *').each(function() {
														 
				var currentSize = $(this).css('fontSize').substring(0, 2);
				
				var newSize = parseFloat(currentSize) - 1;
				
				$(this).css('fontSize', newSize +'px')
				
			});
			
			return false;
			
		});
	
	});
