//permette a getScript di avere l'opzione cache
$.getScript = function(url, callback, cache){
	if(typeof cache==='undefined')//se non passo il parametro cache è attiva
		cache=true;
	$.ajax({
			type: "GET",
			url: url,
			success: callback,
			dataType: "script",
			cache: cache
	});
};

