$(function () {
	
	// ORIGINAL FONT SIZES
	$(".resizer *").each(function() {
		var size = $(this).css('font-size').replace('px', '');
		var line = $(this).css('line-height').replace('px', '');
		$(this).data('font-size', size);
		$(this).data('line-height', line);
	});
	
	// RESIZER
	window.resizer = function(multiplier) {
		$(".resizer *").each(function() {
			var size = $(this).data('font-size');
			var line = $(this).data('line-height');
			$(this).css('font-size', size*multiplier+'px');
			$(this).css('line-height', line*multiplier+'px');
		});
	}
	
	// RESIZER LINKS
	$("#header .textbar .left a").click(function() {
		var multiplier = $(this).attr('href').substr(1);
		document.cookie = 'resizer-multiplier='+multiplier;
		window.resizer(multiplier);
		return false;
	});
	
	// SESSION
	var cookies = document.cookie.split(';');
	for (i in cookies) {
		var cookie = cookies[i].split('=');
		if (cookie[0] == 'resizer-multiplier') {
			window.resizer(cookie[1]);
		}
	}
	
	// (c)ez
});
