	
	
	//font size
		
	var currentSize = 12;	//Нормален размер на шрифта
	var max = 16; 			//Максимален размер на шрифта
	var min = 10;			//Минимален размер на шрифта
	
	function normalSize() {
		var obj = document.getElementById('content-content');
		currentSize = 12;
		obj.style.fontSize = currentSize + "px";
	}
	
	function increase(param) {
		var obj = document.getElementById('content-content');
		if(currentSize < max) {
			currentSize++;
			obj.style.fontSize = currentSize + "px";
		}
	}
	
	function decrease(param) {
		var obj = document.getElementById('content-content');
		if(currentSize > min) {
	   		currentSize--;
	   		obj.style.fontSize = currentSize + "px";
		}
	}

	
	
	jQuery(document).ready(function($) {
		$('.popupmenu li a').each(function(e){
			$(this).click(function(e){
				e.preventDefault();
				$('#monitor').hide('slow');
				$('#loader').show('fast');
				filename = $(this).attr('href');
				$.ajax({url: filename,
					type: "GET",
					timeout: 5000,
					success: function(msg) {
						$('#monitor').html(msg); 
						$('#loader').hide('fast');
						$('#monitor').show('slow');
					},
					error: function (request, status, err){
						$('#loader').hide('fast');	
					}});

			});
		}); 
	})	