(function($) {
	$(document).ready(function(evnt) {
		/*
		if ($('div#todo-message').length == 0) {
			$('<div />')
				.attr('id', 'todo-message')
				.css({
					border:'1px solid black',
					backgroundColor:'#F1ED70',
					color:'#000',
					padding:'15px',
					position:'absolute',
					opacity:'0.8'
				})
				.text('Dit onderdeel wordt nog aangepast.')
				.appendTo('body')
				.mouseover(function() {
					$(this).show();
				})
				.mouseout(function() {
					$(this).hide();
				})
				.hide();
		}
		
		$('.todo')
			.mousemove(function(e) {
				$('div#todo-message')
					.css({
						top:e.clientY + 5,
						left:e.clientX + 5
					})
					.show();
			})
			.mouseout(function() {
				$('div#todo-message').hide();
			});
			*/
	});
})(jQuery);