diff --git a/cron/jquery-cron-min.js b/cron/jquery-cron-min.js
index 386fb37..27d621d 100644
--- a/cron/jquery-cron-min.js
+++ b/cron/jquery-cron-min.js
@@ -1 +1 @@
-(function(e){var n={initial:"* * * * *",minuteOpts:{minWidth:100,itemWidth:30,columns:4,rows:undefined,title:"Minutes Past the Hour"},timeHourOpts:{minWidth:100,itemWidth:20,columns:2,rows:undefined,title:"Time: Hour"},domOpts:{minWidth:100,itemWidth:30,columns:undefined,rows:10,title:"Day of Month"},monthOpts:{minWidth:100,itemWidth:100,columns:2,rows:undefined,title:undefined},dowOpts:{minWidth:100,itemWidth:undefined,columns:undefined,rows:undefined,title:undefined},timeMinuteOpts:{minWidth:100,itemWidth:20,columns:4,rows:undefined,title:"Time: Minute"},effectOpts:{openSpeed:400,closeSpeed:400,openEffect:"slide",closeEffect:"slide",hideOnMouseOut:true},url_set:undefined,customValues:undefined,onChange:undefined,useGentleSelect:false};var y="";for(var u=0;u<60;u++){var t=(u<10)?"0":"";y+="\n"}var d="";for(var u=0;u<24;u++){var t=(u<10)?"0":"";d+="\n"}var v="";for(var u=1;u<32;u++){if(u==1||u==21||u==31){var c="st"}else{if(u==2||u==22){var c="nd"}else{if(u==3||u==23){var c="rd"}else{var c="th"}}}v+="\n"}var h="";var l=["January","February","March","April","May","June","July","August","September","October","November","December"];for(var u=0;u"+l[u]+"\n"}var s="";var g=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];for(var u=0;u"+g[u]+"\n"}var r="";var b=["minute","hour","day","week","month","year"];for(var u=0;u"+b[u]+"\n"}var p={minute:[],hour:["mins"],day:["time"],week:["dow","time"],month:["dom","time"],year:["dom","month","time"]};var w={minute:/^(\*\s){4}\*$/,hour:/^\d{1,2}\s(\*\s){3}\*$/,day:/^(\d{1,2}\s){2}(\*\s){2}\*$/,week:/^(\d{1,2}\s){2}(\*\s){2}\d{1,2}$/,month:/^(\d{1,2}\s){3}\*\s\*$/,year:/^(\d{1,2}\s){4}\*$/};function a(i){if(typeof i=="undefined"){return false}else{return true}}function q(i){return(!a(i)||typeof i=="object")}function z(A,j){if(a(j.customValues)){for(key in j.customValues){if(A==j.customValues[key]){return key}}}var E=/^((\d{1,2}|\*)\s){4}(\d{1,2}|\*)$/;if(typeof A!="string"||!E.test(A)){e.error("cron: invalid initial value");return undefined}var C=A.split(" ");var D=[0,0,1,1,0];var G=[59,23,31,12,6];for(var B=0;B=D[B]){continue}e.error("cron: invalid value found (col "+(B+1)+") in "+o.initial);return undefined}for(var H in w){if(w[H].test(A)){return H}}e.error("cron: valid but unsupported cron format. sorry.");return undefined}function f(j,i){if(!a(z(i.initial,i))){return true}if(!q(i.customValues)){return true}if(a(i.customValues)){for(key in i.customValues){if(w.hasOwnProperty(key)){e.error("cron: reserved keyword '"+key+"' should not be used as customValues key.");return true}}}return false}function k(B){var i=B.data("block");var j=hour=day=month=dow="*";var A=i.period.find("select").val();switch(A){case"minute":break;case"hour":j=i.mins.find("select").val();break;case"day":j=i.time.find("select.cron-time-min").val();hour=i.time.find("select.cron-time-hour").val();break;case"week":j=i.time.find("select.cron-time-min").val();hour=i.time.find("select.cron-time-hour").val();dow=i.dow.find("select").val();break;case"month":j=i.time.find("select.cron-time-min").val();hour=i.time.find("select.cron-time-hour").val();day=i.dom.find("select").val();break;case"year":j=i.time.find("select.cron-time-min").val();hour=i.time.find("select.cron-time-hour").val();day=i.dom.find("select").val();month=i.month.find("select").val();break;default:return A}return[j,hour,day,month,dow].join(" ")}var x={init:function(i){var G=i?i:{};var B=e.extend([],n,G);var j=e.extend({},n.effectOpts,G.effectOpts);e.extend(B,{minuteOpts:e.extend({},n.minuteOpts,j,G.minuteOpts),domOpts:e.extend({},n.domOpts,j,G.domOpts),monthOpts:e.extend({},n.monthOpts,j,G.monthOpts),dowOpts:e.extend({},n.dowOpts,j,G.dowOpts),timeHourOpts:e.extend({},n.timeHourOpts,j,G.timeHourOpts),timeMinuteOpts:e.extend({},n.timeMinuteOpts,j,G.timeMinuteOpts)});if(f(this,B)){return this}var C=[],A="",D=B.customValues;if(a(D)){for(var F in D){A+="\n"}}C.period=e("Every ").appendTo(this).data("root",this);var E=C.period.find("select");E.bind("change.cron",m.periodChanged).data("root",this);if(B.useGentleSelect){E.gentleSelect(j)}C.dom=e(" on the ").appendTo(this).data("root",this);E=C.dom.find("select").data("root",this);if(B.useGentleSelect){E.gentleSelect(B.domOpts)}C.month=e(" of ").appendTo(this).data("root",this);E=C.month.find("select").data("root",this);if(B.useGentleSelect){E.gentleSelect(B.monthOpts)}C.mins=e(" at minutes past the hour ").appendTo(this).data("root",this);E=C.mins.find("select").data("root",this);if(B.useGentleSelect){E.gentleSelect(B.minuteOpts)}C.dow=e(" on ").appendTo(this).data("root",this);E=C.dow.find("select").data("root",this);if(B.useGentleSelect){E.gentleSelect(B.dowOpts)}C.time=e(" at :").appendTo(this).data("root",this);E=C.time.find("select.cron-time-hour").data("root",this);if(B.useGentleSelect){E.gentleSelect(B.timeHourOpts)}E=C.time.find("select.cron-time-min").data("root",this);if(B.useGentleSelect){E.gentleSelect(B.timeMinuteOpts)}C.controls=e("« save ").appendTo(this).data("root",this).find("span.cron-button-save").bind("click.cron",m.saveClicked).data("root",this).end();this.find("select").bind("change.cron-callback",m.somethingChanged);this.data("options",B).data("block",C);this.data("current_value",B.initial);return x.value.call(this,B.initial)},value:function(C){if(!C){return k(this)}var A=this.data("options");var D=this.data("block");var F=A.useGentleSelect;var K=z(C,A);if(!a(K)){return false}if(a(A.customValues)&&A.customValues.hasOwnProperty(K)){K=A.customValues[K]}else{var H=C.split(" ");var J={mins:H[0],hour:H[1],dom:H[2],month:H[3],dow:H[4]};var G=p[K];for(var E=0;E"+(e<10?"0":"")+e+"\n"}var m="";for(e=0;e<24;e++){m+="\n"}var h="";for(e=1;e<32;e++){if(1==e||21==e||31==e)var t="st";else if(2==e||22==e)t="nd";else if(3==e||23==e)t="rd";else t="th";h+="\n"}var p="",n=["January","February","March","April","May","June","July","August","September","October","November","December"];for(e=0;e"+n[e]+"\n";var v="",i=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];for(e=0;e"+i[e]+"\n";v+="\n",v+="\n";var f="",a=["minute","hour","day","week","month","year"];for(e=0;e"+a[e]+"\n";var y={minute:[],hour:["mins"],day:["time"],week:["dow","time"],month:["dom","time"],year:["dom","month","time"]},k={minute:/^(\*\s){4}\*$/,hour:/^\d{1,2}\s(\*\s){3}\*$/,day:/^(\d{1,2}\s){2}(\*\s){2}\*$/,week:/^(\d{1,2}\s){2}(\*\s){2}\d{1,2}$/,month:/^(\d{1,2}\s){3}\*\s\*$/,year:/^(\d{1,2}\s){4}\*$/};function b(e){return void 0!==e}function O(e,t){if(b(t.customValues))for(key in t.customValues)if(e==t.customValues[key])return key;if("string"==typeof e&&/^((\d{1,2}|\*)\s){4}(\d{1,2}|\*)$/.test(e)){for(var n=e.split(" "),i=[0,0,1,1,0],a=[59,23,31,12,6],s=0;s"+r+"\n";i.period=c("Every ").appendTo(this).data("root",this);var l=i.period.find("select");return l.bind("change.cron",S.periodChanged).data("root",this),o.useGentleSelect&&l.gentleSelect(n),i.dom=c(" on the ").appendTo(this).data("root",this),l=i.dom.find("select").data("root",this),o.useGentleSelect&&l.gentleSelect(o.domOpts),i.month=c(" of ").appendTo(this).data("root",this),l=i.month.find("select").data("root",this),o.useGentleSelect&&l.gentleSelect(o.monthOpts),i.mins=c(" at minutes past the hour ").appendTo(this).data("root",this),l=i.mins.find("select").data("root",this),o.useGentleSelect&&l.gentleSelect(o.minuteOpts),i.dow=c(" on ").appendTo(this).data("root",this),l=i.dow.find("select").data("root",this),o.useGentleSelect&&l.gentleSelect(o.dowOpts),i.time=c(" at :").appendTo(this).data("root",this),l=i.time.find("select.cron-time-hour").data("root",this),o.useGentleSelect&&l.gentleSelect(o.timeHourOpts),l=i.time.find("select.cron-time-min").data("root",this),o.useGentleSelect&&l.gentleSelect(o.timeMinuteOpts),i.controls=c("« save ").appendTo(this).data("root",this).find("span.cron-button-save").bind("click.cron",S.saveClicked).data("root",this).end(),this.find("select").bind("change.cron-callback",S.somethingChanged),this.data("options",o).data("block",i),this.data("current_value",o.initial),w.value.call(this,o.initial)},value:function(e){if(!e)return function(e){var t=e.data("block"),o=hour=day=month=dow="*",n=t.period.find("select").val();switch(n){case"minute":break;case"hour":o=t.mins.find("select").val();break;case"day":o=t.time.find("select.cron-time-min").val(),hour=t.time.find("select.cron-time-hour").val();break;case"week":o=t.time.find("select.cron-time-min").val(),hour=t.time.find("select.cron-time-hour").val(),dow=t.dow.find("select").val();break;case"month":o=t.time.find("select.cron-time-min").val(),hour=t.time.find("select.cron-time-hour").val(),day=t.dom.find("select").val();break;case"year":o=t.time.find("select.cron-time-min").val(),hour=t.time.find("select.cron-time-hour").val(),day=t.dom.find("select").val(),month=t.month.find("select").val();break;default:return n}return[o,hour,day,month,dow].join(" ")}(this);var t=this.data("options"),o=this.data("block"),n=t.useGentleSelect,i=O(e,t);if(!b(i))return!1;if(b(t.customValues)&&t.customValues.hasOwnProperty(i))i=t.customValues[i];else for(var a=e.split(" "),s={mins:a[0],hour:a[1],dom:a[2],month:a[3],dow:a[4]},r=y[i],l=0;l" + days[i] + "\n";
}
+ str_opt_dow += "\n";
+ str_opt_dow += "\n";
// options for period
var str_opt_period = "";