// Cufon lettertypes aanmaken.
Cufon.replace('h1', { fontFamily: 'Tahoma' });

// 
$(document).ready(function() {
	$("#menu_hans").click(function () {
		$("div#lower_right_menu_hans").show("slow");
		$("div#lower_right_menu_osher").slideUp();
	});
	
	$("#menu_osher").click(function () {
		$("div#lower_right_menu_hans").slideUp();
		$("div#lower_right_menu_osher").show("slow");
	});
});

//
function changeSub(divID) {
	
	if (document.getElementById(divID).style.display == 'none') {
	
		document.getElementById(divID).style.display = 'block';
	
	} else {
		
		document.getElementById(divID).style.display = 'none';
		
	}
	
}
