window.addEvent('domready',function() { 

	if ($('opleiding_list')!=null) {

		if ($('opleiding_tabs')!=null) {
			$$('#opleiding_tabs li').addEvent('mouseover', function(event){
				$(this.id).set('class','over');
			});

			$$('#opleiding_tabs li').addEvent('mouseout', function(event){
				$(this.id).set('class','def');
			});

			$$('#opleiding_tabs li').addEvent('click', function(event){
				$$('#opleiding_list div').setStyle('display','none');
				$$('.' + this.id).setStyle('display','block');
			});
		}
	}

});