$(document).ready(function() {
	$('#menu_links a').each(function(index){
	    var url = 'document.location="'+$(this).attr('href')+'"';
	    $(this).parent().attr('onclick', url);
	})
});

function change_language2(dest_language, ajax_call, func_callback)
{
alert(BASE_DIR);
	if (typeof ajax_call != 'boolean')
		ajax_call = false;

	if (ajax_call)
		jQuery.get(BASE_DIR + 'pages/set_language/' + dest_language + '/0/', { }, func_callback);
	else{
	window.location = 'http://www.poepinjehoofd.nl';

		//window.location = BASE_DIR + 'pages/set_language/' + dest_language + '/1/jkl;adfsfkj;lak;jldfsjkl;fadsjkl;fads';
		}
}