$(document).ready(function() {
	$('a[rel="zoom"]').fancybox({
		'titlePosition' : 'over'
	});

	$('a[rel="mapzoom"]').fancybox({
		'type' : 'iframe',
		'width' : '70%',
		'height' : '85%',
	});

	if($.cookie('amkefontsize') != '')
		var fontsize = $.cookie('amkefontsize');
	else
		var fontsize = 12;

	$('#layout').css('font-size', fontsize + 'px');

	$('a[href="#bigger"]').click(function() {
		if(fontsize < 16)
			fontsize++;
		$('#layout').css('font-size', fontsize + 'px');
		$.cookie('amkefontsize', fontsize);
	});

	$('a[href="#smaller"]').click(function() {
		if(fontsize > 9)
			fontsize--;
		$('#layout').css('font-size', fontsize + 'px');
		$.cookie('amkefontsize', '');
	});

	$('#meCommentBox').hide();
	$('#toggle_meCommentBox').toggle(
		function() {
			$('#meCommentBox').show();
		},
		function() {
			$('#meCommentBox').hide();
		}
	);
});
