(function ($) {
	$(document).ready(function() {
		$('.fragment_date').hide();
    	$('#fragments_select_display').change(function() {
   			//alert($('#updates_select_display').val());
   			$('.fragment_display').hide();
   			$('.fragment_display.fragment_'+$('#fragments_select_display').val()).show();
   		});
   	});	
})(jQuery);

(function ($) {
	$(document).ready(function() {
		$('#edit-uitzenddatum-value-year option').eq(0).text('1999 t/m 2012');
		$('#edit-uitzenddatum-value-month option').eq(0).text('jan t/m dec');
		
		$('#views-exposed-form-uitzendingen-page').addClass('js-processed');
		$('#views-exposed-form-uitzendingen-page .form-submit').hide();
		
		$('.view-uitzendingen .form-type-select select').change(function() {
			year = $('#edit-uitzenddatum-value-year option:selected');
			month = $('#edit-uitzenddatum-value-month option:selected');

			if(year.val() && month.val()) {
				$('#views-exposed-form-uitzendingen-page').submit();
			}
		});
	});	
})(jQuery);;
(function ($) {
	$(document).ready(function() {
        $('.glossary-popup').hide();
   		$('.glossary-title').hover(
   			function() { 
   				$(this).children('.glossary-popup').show();
   				var displaywidth = $(this).children('.measurement').width() + 10;
   				$(this).children('.glossary-popup').css('left',displaywidth + 'px');
   			},
   			function() { $(this).children('.glossary-popup').hide();}
   		);
   	});	
})(jQuery);;
(function ($) {
	$(document).ready(function() {
        $('.updates.flagged').hide();
        $('.updates.new').hide();
        
   		$('#updates_select_display').change(function() {
   			//alert($('#updates_select_display').val());
   			$('.updates').hide();
   			$('.updates.'+$('#updates_select_display').val()).show();
   		});
   	});	
})(jQuery);;

