$(document).ready(function(){
	// verwijderen van opties bij vakantieverhuur.
	$('.view-catalogus2 #edit-filter1 option').each(function(){
		var $this = $(this);
		if($this.val() < 49 && $this.val() > 42){
			$this.remove();
		}
	});
	
	
	// blankenberge ligging
	$('.view-catalogus1 #edit-filter0 option').each(function(){
		var $this = $(this);
		if($this.val() == 49 || $this.val() == 50 || $this.val() == 52){
			$this.remove();
		}
	});
	
	
	// blankenberge type
	$('.view-catalogus1 #edit-filter1 option').each(function(){
		var $this = $(this), v = $this.val();
		if(v == 2748 || v == 2747 || v == 2753 || v == '**ALL**'){
		//if(!($this.val() == 1528 || $this.val() == 2751 || $this.val() == 2752 || $this.val() == '')){
			$this.remove();
		}
	});
	
	
	// default checked.	
	//alert($('.row-periode input[value=IR1_HOLIDAY], .row-periode input[value=IR2_HOLIDAY]').length);
	$('.searchview_holiday .row_periode input.form-radio:first, #searchview_wenduine .row_periode input.form-radio:first').click().attr('checked', 'checked');
	/*
	$('.row-periode input.form-radio').each(function(){
		var v = $(this).val();
		if(v == 'IR1_HOLIDAY' || v == 'IR2_HOLIDAY'){
			$(this).click();
		}
	});
	*/
	
	
	// open link to ERA frames in a new window.
	$('#block-menu-119 a').attr('target', '_blank');
	
});
