$(function() {
	var body_id = $('body').attr('id');
	var target_p = "";
	
	switch(body_id) {
		case "foreword" :
		case "story" :
		case "dark_ages" :
			target_p = "div#description p";
			break;
		case "profiles" :
			target_p = "div#right_content p";
			break;
		case "events" :
			target_p = "div.profile p[id!=date]";
			break;
	}
	
	$('a#txt_zoom_in').click(function() {
		var current_font_size = parseInt($(target_p).css('font-size'));
		if(current_font_size * 1.18 < 18) {
			$(target_p).css('font-size', (current_font_size * 1.1));
		} else {
			$(target_p).css('font-size', 18);
		}
	});
	
	$('a#txt_zoom_out').click(function() {
		var current_font_size = parseInt($(target_p).css('font-size'));
		if(current_font_size * 0.9 > 13) {
			$(target_p).css('font-size', (current_font_size * 0.9));
		} else {
			$(target_p).css('font-size', 13);
		}
	});
	
	return false;
});
