
/* *******************************************************************************************************
	jQuery stuff
******************************************************************************************************* */

	$(document).ready(function() {
		
		// rounded corners

			var IE = /*@cc_on!@*/false;
			if(IE){
			} else {
				$("#contentWrapper").corner("round 20px");
				$("#sidebarLeft").corner("round 20px left");
				$("#sidebarLeft_activiteiten").corner("round 20px left");
				$("#sidebarRight").corner("round 20px right");
			}

			$("#sidebarLeft h1").corner("round 20px tl");
			$("#sidebarLeft ul li.last").corner("round 20px bl");

			$("#sidebarRight h1").corner("round 20px tr");

			$("#sidebarRight #zoekveld").corner("round 20px tr");

			$("#sidebarLeft_activiteiten h1").corner("round 20px tl");
			$("#sidebarLeft_activiteiten ul li.last").corner("round 20px bl");

			$("#uitgelicht h1").corner("round 20px bottom");

			$("#uitgelicht .activiteit").corner("round 20px");

		// make navigation li's clickable
		
			$("ul.menu li").css("cursor","pointer").click(function(){
				window.location = $('a', this).attr('href');
			});

		// sidebarLeft_activiteiten show/hide
		/*
			$("#sidebarLeft .show a").click(function(){
				$("#sidebarLeft_activiteiten").animate({
					marginLeft: "-2px"
				}, 400, function() {
				});
				//return false;
			});

			$("#sidebarLeft_activiteiten .hide").click(function(){
				$("#sidebarLeft_activiteiten").animate({
					marginLeft: "210px"
				}, 400, function() {
				});
				//return false;
			});
		*/
	});
	

