$(document).ready(function() {
	$('#PopupBackground').css('height', rowCount * 100).click(ClosePopup);
	$('div.Raster div.Oratie').bind('click', function() {
		ShowPopup($(this).attr('id'));
	});
});

function ShowPopup(orID) {

	if ( orID == null || orID == 'OR-null' ) {  // do not show something that cannot be shown
		$('#Popup').fadeOut('slow');
		$('#PopupBackground').fadeOut('slow');
		return; 
	}
	
	 var html = $('#' + orID + ' div.Data').html();
	 $('#Popup').fadeOut('slow', function() {
		 $(this).html(html).fadeIn('slow');
	 });
	 
	// $('#PopupBackground').show();
	 
	 $('#PopupBackground').fadeOut('slow', function() {
		 $(this).fadeIn('slow');
	 });	 
}

function ClosePopup() {
	$('#Popup').fadeOut('slow');
	$('#PopupBackground').fadeOut('slow');
}

function Redirect() {
	var faculty = document.getElementById('Faculty').options[document.getElementById('Faculty').selectedIndex].value;
	var year = document.getElementById('Year').options[document.getElementById('Year').selectedIndex].value;
	window.location = '?year=' + year + '&faculty=' + faculty + '&page=0';
}

