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

	$(document).ready(function() {

		// rounded corners

			var IE = /*@cc_on!@*/false;
			if(IE){
			} else {
				// optional rounded form elements
			}
			
			$("#top #topMenu").corner("round 5px bottom");
			$("#top #topMenu ul li").corner("round 5px bottom");

			$("#columnLeft .element_poll").corner("round 5px");
			$("#columnLeft .element_poll h1").corner("round 5px top");

			$("#columnRight #search").corner("round 5px top");

		// make navigation li's clickable
			
			$("#columnLeft ul.hoofdmenu li").css("cursor","pointer").click(function(){
				window.location = $('a', this).attr('href');
			});
			$("#footerLeft ul li").css("cursor","pointer").click(function(){
				window.location = $('a', this).attr('href');
			});
			
		// jQuery UI stuff
			
			//hover states on the static widgets
			/*
			$('#dialog_link, ul#icons li').hover(
				function() { $(this).addClass('ui-state-hover'); }, 
				function() { $(this).removeClass('ui-state-hover'); }
			);
			*/

	});
	
	

