$(function(){
		$(".pollAnswer").click(function() {
			//alert("Click");
			$(".pollAnswerBlock .pollAnswer").each(function() {
				$(this).addClass("not_selected");
			});
			$(this).removeClass("not_selected");
			$(this).addClass("selected");
		});		
		
		$(".pollAnswer img").hover(function() {
			$(".pollAnswerBlock .pollAnswer label img").each(function() {
				$(this).addClass("hover_off");
			});
			$(this).addClass("hover_on");
		},
		function() {
			$(".pollAnswerBlock .pollAnswer label img").each(function() {
				$(this).removeClass("hover_off");
			});
			$(this).addClass("hover_on");
		});
          $("#error").hide();
          $("#poll_container").children("form").attr('id', "book_vote");
          $(".pollRadio").addClass("required");
          $(".pollRadio").attr('title', 'You have to pick a book first, fool!');
        $("#book_vote").validate({
		errorLabelContainer: $("#error")
	});

});