function setBgImg(dit,plaatje,color){	
	dit.style.background = color; 
	dit.style.backgroundImage = 'url('+plaatje+')' ;   
	dit.style.backgroundRepeat = 'no-repeat';
}

function setBgImg(dit,plaatje){	
	dit.style.backgroundImage = 'url('+plaatje+')' ;   
	dit.style.backgroundRepeat = 'no-repeat';
}
