$(function(){
	
	$(".farbrad").click(function(){
		$(".farb").each(function(){
			//$(this).css("background-color","#00ffff");
			$(this).removeClass("farbsel");
		});
		//$(this).parent().css("background-color","#0000ff")
		$(this).parent().addClass("farbsel");
	});
	
	$(".bitrad").click(function(){
		$(".bit").each(function(){
			//$(this).css("background-color","#00ffff");
			$(this).removeClass("bitsel");
		});
		//$(this).parent().css("background-color","#0000ff")
		$(this).parent().addClass("bitsel");
	});
	
});
