function slide_landen() {
	if($('#short_landenlijst').height() > $('#full_landenlijst').height() ) {
		$('#full_landenlijst').height( $('#short_landenlijst').height() );
	} else {
		$('#short_landenlijst').height( $('#full_landenlijst').height() );
	}
	$('#full_landenlijst').effect('slide');
}

function slide_streken() {
        if($('#short_strekenlijst').height() > $('#full_strekenlijst').height() ) {
                $('#full_strekenlijst').height( $('#short_strekenlijst').height() );
        } else {
                $('#short_strekenlijst').height( $('#full_strekenlijst').height() );
        }
        $('#full_strekenlijst').effect('slide');
}

function slide_plaatsen() {
        if($('#short_plaatsenlijst').height() > $('#full_plaatsenlijst').height() ) {
                $('#full_plaatsenlijst').height( $('#short_plaatsenlijst').height() );
        } else {
                $('#short_plaatsenlijst').height( $('#full_plaatsenlijst').height() );
        }
        $('#full_plaatsenlijst').effect('slide');
}

function slide_weken() {
        if($('#short_wekenlijst').height() > $('#full_wekenlijst').height() ) {
                $('#full_wekenlijst').height( $('#short_wekenlijst').height() );
        } else {
                $('#short_wekenlijst').height( $('#full_wekenlijst').height() );
        }
        $('#full_wekenlijst').effect('slide');
}

function slide_accommodations() {
        if($('#short_accommodations').height() > $('#full_accommodations').height() ) {
                $('#full_accommodations').height( $('#short_accommodations').height() );
        } else {
                $('#short_accommodations').height( $('#full_accommodations').height() );
        }
        $('#full_accommodations').effect('slide');
}

function start_carousel() {
	jQuery('#mycarousel').jcarousel({
        	vertical: true,
	        scroll: 2
	});	
}

function start_blinking() {
	if(document.getElementById('blink')) {
		document.getElementById('blink').style.display='none';
		setTimeout("stop_blinking()", 1000);
	}
}

function stop_blinking() {
	if(document.getElementById('blink')) {
		document.getElementById('blink').style.display='';
		setTimeout("start_blinking()", 1000);
	}
}
