$(document).ready(function() {

	/* Default values (within the HTML prototype): */

		// PopUp Window:
		$('#PopUpContainer').hide();
		$('#PopUp').hide();
		$('.nojs').hide();
		$('.extra').hide();
		$('.extracontent-switch').show();
	
	/* ------------------------------------------------
	 * PopUp Windows ('Meld acitiviteit' & 'Aanmelden')
	 * ------------------------------------------------
	 */
	/* PopUp Window - Show window when the 'Meld activiteit' button is clicked */	
	$('#CalendarReportEvent a').click( function() {
		$('#PopUpContainer').fadeIn();
		$('#PopUp').fadeIn( 500 );
		return false;
	});
	
	/* PopUp Window - Close window when the close button is clicked */
	$('#PopUp #ClosePopUp').click( function() {
		$('#PopUpContainer').fadeOut();
		return false;
	});
	
	/* PopUp Window - Close window when the cancel button is clicked */
	$('#PopUp .cancel').click( function() {
		$('#PopUpContainer').fadeOut();
		return false;
	});
	
	/* PopUp Window - Show extra input when the extracontent-switch is clicked: */
	$('#PopUp .extracontent').each( function() {
		var extra = $('.extra', this);
		$('.extracontent-switch', this).click( function() {
			$(this).hide();
			extra.fadeIn();
		});
	});
	
	/* PopUp Window - Show window when the 'Meld activiteit' button is clicked */	
	$('a#EventApply').click( function() {
		$('#PopUpContainer').fadeIn();
		$('#PopUp').fadeIn( 500 );
		return false;
	});
	
});
