$(document).ready(function(){
	
	$('#menu_1_nav').click(function(){doMenu(1,0);});
	$('#menu_2_nav').click(function(){doMenu(2,1);});
	$('#menu_3_nav').click(function(){doMenu(3,1);});
	$('#menu_4_nav').click(function(){doMenu(4,0);});
	showgooglemap();

});

/* menu animation */

function doMenu(id,clear) {
	$('.content').hide();
	showItem(id,clear);
	for(var i = 1; i <= 4; i++) {
		if(i !== id) {
			hideItem(i);
		}
	}
}

function showItem(id,clear) {
	$('#menu_' + id).animate({width:'600'},500,function(){
		if(clear == 1) {
			$('#menu_' + id).css('background','url(\'static/img/background_' + id + '_empty.gif\')');
		}
		$('#content_' + id).fadeIn(500);
	});
}

function hideItem(id) {
	$('#menu_' + id).animate({width:'120'},500,function(){
		$('#menu_' + id).css('background','url(\'static/img/background_' + id + '.gif\')');
	});
}

/* content mangement systeem */

function showklopper(klopper) {
	$.ajax({
		url: "getklopper.php",
		data: 'klopper=' + klopper,
		success: function(result) {
			$('#dynamickloppercontent').html(result);
		}
	});
}

function showagenda(agenda) {
	$.ajax({
		url: "getagenda.php",
		data: 'agenda=' + agenda,
		success: function(result) {
			$('#dynamicagendacontent').html(result);
		}
	});
}