// JavaScript Document

	$(function (){
		$('a').click(function(){
			var os = $('.post-content').children('p').css('font-size')
			var num = parseFloat (os, 10);
			var uom = os.slice(-2);
			if (this.id == 'smaller') {
				$('.post-content').children('p').css('font-size', num / 1.1 + uom);
			}
			
			if (this.id == 'larger') {
				$('.post-content').children('p').css('font-size', num * 1.1 + uom);
			}
			
			
		});

	});  
