
window.addEvent('domready', 

 		 function(){
		 	    $$('input.DatePicker').each( function(el){
						new DatePicker(el);
					});
			init_editor();	
				
		} 
	);	

function show_gegevens(){
	$('gegevens').style.display = ""
	$('beoordelingen').style.display = "none"
	$('forumberichten').style.display = "none"
	$('contact').style.display = "none"
	$('profiel_aanpassen').style.display = "none"
	
	$('tabgegevens').className = "tabSel";
	$('tabbeoordelingen').className = "tab";
	$('tabforum').className = "tab";
	$('tabcontact').className = "tab";
return false;
}

function show_beoordelingen(){
	
	$('gegevens').style.display = "none"
	$('beoordelingen').style.display = ""
	$('forumberichten').style.display = "none"
	$('contact').style.display = "none"
	$('profiel_aanpassen').style.display = "none"
	
	$('tabgegevens').className = "tab";
	$('tabbeoordelingen').className = "tabSel";
	$('tabforum').className = "tab";
	$('tabcontact').className = "tab";
	$('tabbewerk').className = "tab";
	return false;
}

function show_forum(){
	
	$('gegevens').style.display = "none"
	$('beoordelingen').style.display = "none"
	$('forumberichten').style.display = ""
	$('contact').style.display = "none"
	$('profiel_aanpassen').style.display = "none"
	
	$('tabgegevens').className = "tab";
	$('tabbeoordelingen').className = "tab";
	$('tabforum').className = "tabSel";
	$('tabcontact').className = "tab";
	$('tabbewerk').className = "tab";
	return false;
} 
function show_contact(){
	
	$('gegevens').style.display = "none"
	$('beoordelingen').style.display = "none"
	$('forumberichten').style.display = "none"
	$('contact').style.display = ""
	$('profiel_aanpassen').style.display = "none"
		
	$('tabgegevens').className = "tab";
	$('tabbeoordelingen').className = "tab";
	$('tabforum').className = "tab";
	$('tabcontact').className = "tabSel";
	$('tabbewerk').className = "tab";
	return false;
} 
function show_bewerk(){
	
	$('gegevens').style.display = "none"
	$('beoordelingen').style.display = "none"
	$('forumberichten').style.display = "none"
	$('contact').style.display = "none"
	$('profiel_aanpassen').style.display = ""
	
	$('tabgegevens').className = "tab";
	$('tabbeoordelingen').className = "tab";
	$('tabforum').className = "tab";
	$('tabcontact').className = "tab";
    $('tabbewerk').className = "tabSel";
	return false;	 
} 
