function openNews() {
	$("#News").show();
	$("#Agenda").hide();
	$(".onAgenda").hide();		
	$(".onNews").show();		
	$(".newsView").show();	
	$(".agendaView").hide();	
}
		
function openAgenda() {
	$("#Agenda").show();
	$("#News").hide();
	$(".onNews").hide();
	$(".onAgenda").show();
	$(".agendaView").show();
	$(".newsView").hide();
}

function orangeBoxOpen() {
	$("#orangeBox").slideDown();
}
function orangeBoxClose() {
	$("#orangeBox").hide();
}

$(function(){
	Cufon.replace('.daxMe');
});	
		