jQuery.fn.extend({
   check: function() {
     return this.each(function() { this.checked = true; });
   },
   uncheck: function() {
     return this.each(function() { this.checked = false; });
   }
 });

function load_occ(fichier,cible)
{
	jQuery(document).ready( function() {jQuery.ajaxSetup ( {'beforeSend' : function(xhr) {xhr.overrideMimeType('text/html; charset=ISO-8859-1');	}	})})
	$("#carte_occ").fadeOut(5000);
	$("#occupation").load(fichier,function(){ $("#carte_occ").stop()});
	$("#carte_occ").fadeIn("slow");
	
	return true;
}


