$(function()	{						
	$("#specificaties tbody tr td, #soorten_fotos li").css("opacity", "0.3"); 
	$("#soorten_fotos li").css("cursor", "pointer");
	
	$("#specificaties tbody tr, #soorten_fotos li").hover(
		function() { 
			$("#specificaties tbody tr."+ this.className.replace(/( |)(oneven|even)( |)/, '') +" td").css("opacity", "1"); 
			$("#soorten_fotos li."+ this.className.replace(/( |)(oneven|even)( |)/, '')).css("opacity", "1"); 
		},
		function() { 
			$("#specificaties tbody tr."+ this.className.replace(/( |)(oneven|even)( |)/, '') +" td").css("opacity", "0.3"); 
			$("#soorten_fotos li."+ this.className.replace(/( |)(oneven|even)( |)/, '')).css("opacity", "0.3"); 
		} 
	);
});
