$(document).ready(function() {

	$('.prevlink').bind('click',
		function(){
			$(this).parent().hide();
			$(this).parent().prev().show();
		}
	);

	
	$('.nextlink').bind('click',
		function(){
			$(this).parent().hide();
			$(this).parent().next().show();
		}
	);	




	$('.dayselect').bind('mouseenter',function(){
		// voeg class toe die de kleur heeft van de event
		eventcolor = $('#eventcolor').val();
		$(this).addClass(eventcolor);
	});
	
	$('.dayselect').bind('mouseleave',function(){
		// remove class die kleur heeft van het event!
		eventcolor = $('#eventcolor').val();
		$(this).removeClass(eventcolor);	
	});


	$('.hasevent').bind('mouseenter',function(){

		id = $(this).attr('id');
		title = $('#'+id+'-title').val();
		
		$('#selecteddaytext').html(title);

		// voeg class toe die de kleur heeft van de event
		eventcolor = $('#'+id+'-color').val();
		$(this).addClass(eventcolor);
		$('#selecteddaytext').addClass(eventcolor);



	});
	
	$('.hasevent').bind('mouseleave',function(){
		
		id = $(this).attr('id');
		$('#selecteddaytext').html('');

		// remove class die kleur heeft van het event!
		eventcolor = $('#'+id+'-color').val();
		$(this).removeClass(eventcolor);
		$('#selecteddaytext').removeClass(eventcolor);
	
	});

	

});
