$(document).ready(function(){
	
	var baseUrl  = $('#baseUrl').text();
	$.ajax({
		   type: "GET",
		   url: baseUrl + "/nl/ajax/calendar",
	       beforeSend : function(){
			
			},
		   success: function(msg){
	            $('#calendar').html(msg);
		   }
		 });
	
	$('.nav').live('click', function(){
		var linkUrl =  $(this).attr('alt');
		$.ajax({
			   type: "GET",
			   url: linkUrl,
			   beforeSend : function(){
				
				},
			   success: function(msg){
					$('#calendar').html(msg);
			   }
			 });
		return false;
	});

	$('.active_event').live('mouseover' ,function(){
		$('.active_event').tooltip({'tip' : '#' + $(this).next().attr('id')});
		
	});

	
});
