jQuery.noConflict();
jQuery(document).ready(function($) {

	currentSize = 1;

	$("#increaseFont").click(function() {
		currentSize = currentSize + 0.2;
		$(".content").css("font-size", currentSize+"em");
	});
	$("#decreaseFont").click(function() {
		currentSize = currentSize - 0.2;
		$(".content").css("font-size", currentSize+"em");
	});

});
