function validationVote()
{
	 /*if ($("#choix1").attr("checked")) {

		 alert("test");

	 }*/

	 var choix ="";

	 for (i=0; i<($("#choix1,#choix2,#choix3,#choix4,#choix5").length+1); i++)
	 {
		 if($("#choix"+i).attr("checked"))
		 {
			 choix = $("#choix"+i).attr("value");
			 break;
		 }
	 }

	if (choix != "") {

		$("#information").attr("value");

		$.ajax({
		   type: "POST",
		   url: "sondage.php",
		   data: "info="+$("#information").attr("value")+"&vote="+choix+"&index=2",
		   success: function(msg){
				  $("#news_sondages").html(msg);
		   }
		 });
	}

}

/**
 *
 * @access public
 * @return void
 **/
function clignotement(image,news_sondage){


	 if ($("#"+image).attr("src").lastIndexOf(2) != -1 ) {
		   $("#"+image).attr("src","./images/banner/"+news_sondage+"2.jpg");
	 }
	 else
	 {
		 $("#"+image).attr("src","./images/banner/"+news_sondage+".jpg");
	 }

	setTimeout(clignotement(image),2000);
}
