/* JQUERY CUSTOM COMMANDS */
$(document).ready(function(){ /* start javascript when document is loaded */
	
	/* MENU / TOOLTIPS (IE6) */
	$('#menu li, td.help blockquote').hover(function() {
	    $(this).addClass("hover");
	}, function() {
	    $(this).removeClass("hover");
	});
	/* ADVANCED SEARCH */
	$('#searchAdvanced').hide();
	$('#searchAdvancedOpen').click(function() {
	    $('#searchAdvanced').slideToggle();
		return false;
	});
	$('#searchAdvancedClose').click(function() {
	    $('#searchAdvanced').slideUp();
	    $("#frm_search").clearForm();
		return false;
	});
	
	$('input:checkbox').click( function() {
		a = $(this);
		$('input:checkbox').each( function() {
			if($(this).val() == 'Landelijk'){
				t = $(this).is(':checked');
			}
		});	
		if(a.val() == 'Landelijk'){
			$('input:checkbox').each( function() {				
				if($(this).val() != 'Landelijk' && $(this).val() != 'Internationaal' ){
					this.checked = t;
					this.disabled = t;
				}
			});	
		}else if(t){
			$('input:checkbox').each( function() {				
				if($(this).val() != 'Landelijk' && $(this).val() != 'Internationaal' ){
					this.checked = t;
					this.disabled = t;
				}
			});	
		}
	});
	//$.fck.config = {path: '/new/lib/vendors/fckeditor/', toolbar: 'Default'};
});
