
$(document).ready(function(){

   //BOF Bug jquery Internet explorer : On redonne le focus aux boutons radios
	$(function () {
	       if ($.browser.msie) {
	              $('input:radio').click(function() {
	                     this.blur();
	                     this.focus();
	              });
	       }
	});
	//EOF Fin bug internet explorer
});
