$(function() {
	$(".umfrage_wissen .auswahl div").bind("mousemove",function(){
		$(this).addClass("hover");
	});
	
	$(".umfrage_wissen .auswahl div").bind("mouseout",function(){
		$(this).removeClass("hover");
	});
	
	// Klick auf Zelle
	$(".umfrage_wissen .auswahl div").bind("click",function(){
		var formelement = $(this).children("input");
		var typ = formelement.attr("type");
		var zustand = formelement.attr("checked");
		if (typ != "radio") {
			if(!zustand) {
				formelement.attr({checked: "checked"});
			} else {
				formelement.removeAttr("checked");
			} 
		} else {
			if(!zustand) {
				formelement.attr({checked: "checked"});
			}						
		}
	});
	
	// Klick direkt auf Formularlement
	$(".umfrage_wissen .auswahl div input").bind("click",function(){
	var formelement = $(this);
		var zustand = formelement.attr("checked");
		if(!zustand) {
			formelement.attr({checked: "checked"});
		} else {
			formelement.removeAttr("checked");
		}
	});
});
