	
//	if(document.getElementById){
//		var woordgroepen=document.getElementById('woordgroepen')
//		if(woordgroepen){
//			var cellen=woordgroepen.getElementsByTagName('td')
//			for(var i=0;i<cellen.length;i++){
//				if(cellen[i].className=='woordgroepcel'){
//					
//				  //
//				  // muisovereffect
//				  //
//					cellen[i].onmouseover=function(){voeg_klasse_toe(this,'muisover')}
//					cellen[i].onmouseout=function(){verwijder_klasse(this,'muisover')}
//					
//				}
//			}
//			
//		}
//	}

	$(document).ready(function() {
		$('.woordgroepcel').bind('mouseover',function(){
			$(this).addClass('muisover');
		});
		$('.woordgroepcel').bind('mouseout',function(){
			$(this).removeClass('muisover');
		});
	});
	

