refinerycms 0.9.4.5 → 0.9.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. data/README +20 -9
  2. data/Rakefile +10 -0
  3. data/bin/refinery +53 -0
  4. data/bin/refinery-update-core +23 -0
  5. data/config/environment.rb +2 -2
  6. data/config/preinitializer.rb +24 -0
  7. data/public/javascripts/application.js +0 -1
  8. data/public/javascripts/jquery/jquery.js +4373 -8
  9. data/public/javascripts/livepipe.js +10 -186
  10. data/public/javascripts/{admin.js → refinery/admin.js} +0 -0
  11. data/public/javascripts/{wymeditor → refinery}/boot_wym.js +0 -0
  12. data/public/javascripts/{dialog.js → refinery/dialog.js} +0 -0
  13. data/public/javascripts/{parse_url.js → refinery/parse_url.js} +0 -0
  14. data/public/javascripts/{prototype.enhancements.js → refinery/prototype.enhancements.js} +0 -0
  15. data/public/javascripts/{tooltips.js → refinery/tooltips.js} +0 -0
  16. data/public/javascripts/tabs.js +135 -133
  17. data/public/javascripts/wymeditor/jquery.refinery.wymeditor.js +4 -5
  18. data/public/stylesheets/formatting.css +5 -0
  19. data/public/stylesheets/home.css +5 -0
  20. data/public/stylesheets/{formatting.css.example → refinery/formatting.css} +45 -34
  21. data/public/stylesheets/refinery/home.css +0 -0
  22. data/public/stylesheets/{refinery.css → refinery/refinery.css} +77 -36
  23. data/public/stylesheets/refinery/theme.css +36 -0
  24. data/public/stylesheets/{thickbox.css → refinery/thickbox.css} +0 -0
  25. data/public/stylesheets/{tooltips.css → refinery/tooltips.css} +0 -0
  26. data/public/stylesheets/theme.css +1 -36
  27. data/script/about +3 -0
  28. data/script/console +3 -0
  29. data/script/dbconsole +3 -0
  30. data/script/destroy +3 -0
  31. data/script/generate +3 -0
  32. data/script/performance/profiler +3 -0
  33. data/script/performance/request +3 -0
  34. data/script/plugin +3 -0
  35. data/script/process/inspector +3 -0
  36. data/script/process/reaper +3 -0
  37. data/script/process/spawner +3 -0
  38. data/script/runner +3 -0
  39. data/script/server +3 -0
  40. data/vendor/plugins/authentication/app/views/sessions/new.html.erb +5 -5
  41. data/vendor/plugins/images/app/views/admin/images/index.html.erb +4 -5
  42. data/vendor/plugins/images/app/views/admin/images/insert.html.erb +1 -1
  43. data/vendor/plugins/inquiries/app/views/admin/inquiries/index.html.erb +3 -4
  44. data/vendor/plugins/news/app/views/admin/news_items/index.html.erb +4 -5
  45. data/vendor/plugins/pages/app/views/admin/page_dialogs/_page_link.html.erb +3 -4
  46. data/vendor/plugins/pages/app/views/admin/page_dialogs/link_to.html.erb +4 -4
  47. data/vendor/plugins/pages/app/views/admin/pages/_form.html.erb +4 -2
  48. data/vendor/plugins/pages/app/views/admin/pages/index.html.erb +4 -5
  49. data/vendor/plugins/refinery/app/views/admin/_head.html.erb +7 -5
  50. data/vendor/plugins/refinery/app/views/admin/_menu.html.erb +2 -2
  51. data/vendor/plugins/refinery/app/views/layouts/admin.html.erb +25 -17
  52. data/vendor/plugins/refinery/app/views/shared/admin/_search.html.erb +1 -1
  53. data/vendor/plugins/refinery/init.rb +1 -0
  54. data/vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/index.html.erb +9 -12
  55. data/vendor/plugins/refinery/lib/refinery/admin_base_controller.rb +2 -3
  56. data/vendor/plugins/refinery_dialogs/app/views/layouts/admin_dialog.html.erb +1 -1
  57. data/vendor/plugins/resources/app/views/admin/resources/index.html.erb +3 -4
  58. metadata +35 -85
  59. data/public/javascripts/jquery/README +0 -67
  60. data/public/javascripts/jquery/jquery.ui.draggable.js +0 -1
  61. data/public/javascripts/jquery/jquery.ui.js +0 -1
  62. data/public/javascripts/jquery/jquery.ui.resizable.js +0 -1
  63. data/public/javascripts/jquery/jquery.ui.sortable.js +0 -1
  64. data/public/javascripts/overlabel.js +0 -66
  65. data/public/stylesheets/application.css.example +0 -76
  66. data/public/stylesheets/home.css.example +0 -27
  67. data/public/stylesheets/overlabel.css +0 -21
@@ -1,67 +0,0 @@
1
-
2
- --------------------------------
3
- jQuery - New Wave Javascript
4
- http://jquery.com/
5
- --------------------------------
6
-
7
- What you need to build your own jQuery:
8
- - Make sure that you have Java installed.
9
-
10
- If not, go to this page and download "Java Runtime Environment (JRE) 5.0"
11
- http://java.sun.com/javase/downloads/index.jsp
12
-
13
- - You now have two options for building jQuery, if you have access to
14
- common UNIX commands (like 'make', 'mkdir', 'rm', 'cat', and 'echo')
15
- then simply type 'make' to build all the components.
16
-
17
- - The other option is if you have Ant installed (or are on Windows and
18
- don't have access to make). You can download Ant from here:
19
- http://ant.apache.org/bindownload.cgi
20
-
21
- If you do have Ant, everytime (in this README) that I say 'make', do
22
- 'ant' instead - it works identically (for all intents and purposes).
23
-
24
- How to build your own jQuery:
25
-
26
- In the main directory of the distribution (the one that this file is in), type
27
- the following to make all versions of jQuery, the documentation, and the test suite:
28
- make
29
-
30
- Here are each of the individual items that are buildable from the Makefile.
31
-
32
- make jquery
33
- The standard, uncompressed, jQuery code.
34
- Makes: ./dist/jquery.js
35
-
36
- make lite
37
- jQuery without all the additional inline documentation and test cases.
38
- Makes: ./dist/jquery.lite.js
39
-
40
- make pack
41
- A compressed version of jQuery (made with Packer).
42
- Makes: ./dist/jquery.pack.js
43
-
44
- make docs
45
- Builds a complete copy of the documentation, based upon the jQuery source.
46
- Makes ./docs/
47
- Open this file in your browser:
48
- ./docs/index.xml
49
-
50
- make test
51
- Builds a complete copy of the test suite, based upon the jQuery source.
52
- Makes ./test/
53
- Open this file in your browser:
54
- ./test/index.html
55
-
56
- Finally, you can remove all the built files using the command:
57
- make clean
58
-
59
- Additionally, if you want to install jQuery to a location that is not this
60
- directory, you can specify the PREFIX directory, for example:
61
- make PREFIX=/home/john/test/
62
- OR
63
- make PREFIX=~/www/ docs
64
-
65
- If you have any questions, please feel free to ask them on the jQuery
66
- mailing list, which can be found here:
67
- http://jquery.com/discuss/
@@ -1 +0,0 @@
1
- eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('(c(A){A.2I("g.i",A.2c({},A.g.2L,{2G:c(){a B=4.9;7(B.d=="24"&&!(/(l|V|13)/).1h(4.j.e("m"))){4.j.e("m","l")}4.j.1M("g-i");(B.1O&&4.j.1M("g-i-1O"));4.2M()},2n:c(F){a H=4.9;7(4.d||H.1O||A(F.2a).2A(".g-2F-1G")){n 15}a C=!4.9.1G||!A(4.9.1G,4.j).1C?v:15;A(4.9.1G,4.j).2C("*").2E().1d(c(){7(4==F.2a){C=v}});7(!C){n 15}7(A.g.1b){A.g.1b.2Z=4}4.d=A.2P(H.d)?A(H.d.30(4.j[0],[F])):(H.d=="28"?4.j.28():4.j);7(!4.d.31("12").1C){4.d.1u((H.1u=="k"?4.j[0].1t:H.1u))}7(4.d[0]!=4.j[0]&&!(/(13|V)/).1h(4.d.e("m"))){4.d.e("m","V")}4.S={6:(o(4.j.e("33"),10)||0),5:(o(4.j.e("2S"),10)||0)};4.z=4.d.e("m");4.8=4.j.8();4.8={5:4.8.5-4.S.5,6:4.8.6-4.S.6};4.8.r={6:F.1r-4.8.6,5:F.1s-4.8.5};4.p=4.d.p();a B=4.p.8();7(4.p[0]==f.12&&A.2V.2Y){B={5:0,6:0}}4.8.k={5:B.5+(o(4.p.e("1N"),10)||0),6:B.6+(o(4.p.e("1T"),10)||0)};a E=4.j.m();4.8.l=4.z=="l"?{5:E.5-(o(4.d.e("5"),10)||0)+4.p[0].q,6:E.6-(o(4.d.e("6"),10)||0)+4.p[0].s}:{5:0,6:0};4.1g=4.1S(F);4.w={t:4.d.26(),u:4.d.1Q()};7(H.16){7(H.16.6!=1A){4.8.r.6=H.16.6+4.S.6}7(H.16.2s!=1A){4.8.r.6=4.w.t-H.16.2s+4.S.6}7(H.16.5!=1A){4.8.r.5=H.16.5+4.S.5}7(H.16.2k!=1A){4.8.r.5=4.w.u-H.16.2k+4.S.5}}7(H.h){7(H.h=="k"){H.h=4.d[0].1t}7(H.h=="f"||H.h=="1o"){4.h=[0-4.8.l.6-4.8.k.6,0-4.8.l.5-4.8.k.5,A(H.h=="f"?f:1o).t()-4.8.l.6-4.8.k.6-4.w.t-4.S.6-(o(4.j.e("2i"),10)||0),(A(H.h=="f"?f:1o).u()||f.12.1t.2u)-4.8.l.5-4.8.k.5-4.w.u-4.S.5-(o(4.j.e("2h"),10)||0)]}7(!(/^(f|1o|k)$/).1h(H.h)){a D=A(H.h)[0];a G=A(H.h).8();4.h=[G.6+(o(A(D).e("1T"),10)||0)-4.8.l.6-4.8.k.6,G.5+(o(A(D).e("1N"),10)||0)-4.8.l.5-4.8.k.5,G.6+T.2g(D.2U,D.1U)-(o(A(D).e("1T"),10)||0)-4.8.l.6-4.8.k.6-4.w.t-4.S.6-(o(4.j.e("2i"),10)||0),G.5+T.2g(D.2u,D.1V)-(o(A(D).e("1N"),10)||0)-4.8.l.5-4.8.k.5-4.w.u-4.S.5-(o(4.j.e("2h"),10)||0)]}}4.19("18",F);4.w={t:4.d.26(),u:4.d.1Q()};7(A.g.1b&&!H.2m){A.g.1b.2Q(4,F)}4.d.1M("g-i-2p");4.2d(F);n v},X:c(C,D){7(!D){D=4.m}a B=C=="V"?1:-1;n{5:(D.5+4.8.l.5*B+4.8.k.5*B-(4.z=="13"||(4.z=="V"&&4.p[0]==f.12)?0:4.p[0].q)*B+(4.z=="13"?A(f).q():0)*B+4.S.5*B),6:(D.6+4.8.l.6*B+4.8.k.6*B-(4.z=="13"||(4.z=="V"&&4.p[0]==f.12)?0:4.p[0].s)*B+(4.z=="13"?A(f).s():0)*B+4.S.6*B)}},1S:c(E){a F=4.9;a B={5:(E.1s-4.8.r.5-4.8.l.5-4.8.k.5+(4.z=="13"||(4.z=="V"&&4.p[0]==f.12)?0:4.p[0].q)-(4.z=="13"?A(f).q():0)),6:(E.1r-4.8.r.6-4.8.l.6-4.8.k.6+(4.z=="13"||(4.z=="V"&&4.p[0]==f.12)?0:4.p[0].s)-(4.z=="13"?A(f).s():0))};7(!4.1g){n B}7(4.h){7(B.6<4.h[0]){B.6=4.h[0]}7(B.5<4.h[1]){B.5=4.h[1]}7(B.6>4.h[2]){B.6=4.h[2]}7(B.5>4.h[3]){B.5=4.h[3]}}7(F.1a){a D=4.1g.5+T.2l((B.5-4.1g.5)/F.1a[1])*F.1a[1];B.5=4.h?(!(D<4.h[1]||D>4.h[3])?D:(!(D<4.h[1])?D-F.1a[1]:D+F.1a[1])):D;a C=4.1g.6+T.2l((B.6-4.1g.6)/F.1a[0])*F.1a[0];B.6=4.h?(!(C<4.h[0]||C>4.h[2])?C:(!(C<4.h[0])?C-F.1a[0]:C+F.1a[0])):C}n B},2d:c(B){4.m=4.1S(B);4.1j=4.X("V");4.m=4.19("1c",B)||4.m;7(!4.9.1w||4.9.1w!="y"){4.d[0].1x.6=4.m.6+"1J"}7(!4.9.1w||4.9.1w!="x"){4.d[0].1x.5=4.m.5+"1J"}7(A.g.1b){A.g.1b.1c(4,B)}n 15},2b:c(C){a D=15;7(A.g.1b&&!4.9.2m){a D=A.g.1b.34(4,C)}7((4.9.1m=="2N"&&!D)||(4.9.1m=="2D"&&D)||4.9.1m===v){a B=4;A(4.d).2B(4.1g,o(4.9.1m,10)||2O,c(){B.19("1k",C);B.22()})}1y{4.19("1k",C);4.22()}n 15},22:c(){4.d.2o("g-i-2p");7(4.9.d!="24"&&!4.1z){4.d.2e()}4.d=2K;4.1z=15},2H:{},23:c(B){n{d:4.d,m:4.m,1P:4.1j,9:4.9}},19:c(C,B){A.g.17.2t(4,C,[B,4.23()]);7(C=="1c"){4.1j=4.X("V")}n 4.j.2z(C=="1c"?C:"1c"+C,[B,4.23()],4.9[C])},2T:c(){7(!4.j.U("i")){n}4.j.3d("i").3x(".i").2o("g-i");4.35()}}));A.2c(A.g.i,{3l:{1u:"k",1w:15,3r:":3p",3q:0,3n:1,d:"24"}});A.g.17.1e("i","1p",{18:c(D,C){a B=A("12");7(B.e("1p")){C.9.21=B.e("1p")}B.e("1p",C.9.1p)},1k:c(C,B){7(B.9.21){A("12").e("1p",B.9.21)}}});A.g.17.1e("i","Z",{18:c(D,C){a B=A(C.d);7(B.e("Z")){C.9.1W=B.e("Z")}B.e("Z",C.9.Z)},1k:c(C,B){7(B.9.1W){A(B.d).e("Z",B.9.1W)}}});A.g.17.1e("i","1l",{18:c(D,C){a B=A(C.d);7(B.e("1l")){C.9.1X=B.e("1l")}B.e("1l",C.9.1l)},1k:c(C,B){7(B.9.1X){A(B.d).e("1l",B.9.1X)}}});A.g.17.1e("i","1K",{18:c(C,B){A(B.9.1K===v?"3v":B.9.1K).1d(c(){A(\'<1Y 3y="g-i-1K" 1x="3t: #3u;"></1Y>\').e({t:4.1U+"1J",u:4.1V+"1J",m:"V",1l:"0.3a",Z:3k}).e(A(4).8()).1u("12")})},1k:c(C,B){A("1Y.37").1d(c(){4.1t.3c(4)})}});A.g.17.1e("i","1v",{18:c(D,C){a E=C.9;a B=A(4).U("i");E.14=E.14||20;E.11=E.11||20;B.W=c(F){2f{7(/1D|1v/.1h(F.e("1L"))||(/1D|1v/).1h(F.e("1L-y"))){n F}F=F.k()}2j(F[0].1t);n A(f)}(4);B.Y=c(F){2f{7(/1D|1v/.1h(F.e("1L"))||(/1D|1v/).1h(F.e("1L-x"))){n F}F=F.k()}2j(F[0].1t);n A(f)}(4);7(B.W[0]!=f&&B.W[0].1F!="1E"){B.1Z=B.W.8()}7(B.Y[0]!=f&&B.Y[0].1F!="1E"){B.25=B.Y.8()}},1c:c(D,C){a E=C.9;a B=A(4).U("i");7(B.W[0]!=f&&B.W[0].1F!="1E"){7((B.1Z.5+B.W[0].1V)-D.1s<E.14){B.W[0].q=B.W[0].q+E.11}7(D.1s-B.1Z.5<E.14){B.W[0].q=B.W[0].q-E.11}}1y{7(D.1s-A(f).q()<E.14){A(f).q(A(f).q()-E.11)}7(A(1o).u()-(D.1s-A(f).q())<E.14){A(f).q(A(f).q()+E.11)}}7(B.Y[0]!=f&&B.Y[0].1F!="1E"){7((B.25.6+B.Y[0].1U)-D.1r<E.14){B.Y[0].s=B.Y[0].s+E.11}7(D.1r-B.25.6<E.14){B.Y[0].s=B.Y[0].s-E.11}}1y{7(D.1r-A(f).s()<E.14){A(f).s(A(f).s()-E.11)}7(A(1o).t()-(D.1r-A(f).s())<E.14){A(f).s(A(f).s()+E.11)}}}});A.g.17.1e("i","1R",{18:c(D,C){a B=A(4).U("i");B.1i=[];A(C.9.1R===v?".g-i":C.9.1R).1d(c(){a F=A(4);a E=F.8();7(4!=B.j[0]){B.1i.2x({2q:4,t:F.26(),u:F.1Q(),5:E.5,6:E.6})}})},1c:c(J,N){a I=A(4).U("i");a L=N.9.3j||20;a D=N.1P.6,C=D+I.w.t,P=N.1P.5,O=P+I.w.u;3s(a H=I.1i.1C-1;H>=0;H--){a E=I.1i[H].6,B=E+I.1i[H].t,R=I.1i[H].5,M=R+I.1i[H].u;7(!((E-L<D&&D<B+L&&R-L<P&&P<M+L)||(E-L<D&&D<B+L&&R-L<O&&O<M+L)||(E-L<C&&C<B+L&&R-L<P&&P<M+L)||(E-L<C&&C<B+L&&R-L<O&&O<M+L))){3w}7(N.9.2w!="3b"){a K=T.1f(R-O)<=20;a Q=T.1f(M-P)<=20;a G=T.1f(E-C)<=20;a F=T.1f(B-D)<=20;7(K){N.m.5=I.X("l",{5:R-I.w.u,6:0}).5}7(Q){N.m.5=I.X("l",{5:M,6:0}).5}7(G){N.m.6=I.X("l",{5:0,6:E-I.w.t}).6}7(F){N.m.6=I.X("l",{5:0,6:B}).6}}7(N.9.2w!="36"){a K=T.1f(R-P)<=20;a Q=T.1f(M-O)<=20;a G=T.1f(E-D)<=20;a F=T.1f(B-C)<=20;7(K){N.m.5=I.X("l",{5:R,6:0}).5}7(Q){N.m.5=I.X("l",{5:M-I.w.u,6:0}).5}7(G){N.m.6=I.X("l",{5:0,6:E}).6}7(F){N.m.6=I.X("l",{5:0,6:B-I.w.t}).6}}}}});A.g.17.1e("i","2v",{18:c(D,C){a B=A(4).U("i");B.1H=[];A(C.9.2v).1d(c(){7(A.U(4,"27")){a E=A.U(4,"27");B.1H.2x({b:E,2y:E.9.1m});E.3g();E.19("39",D,B)}})},1k:c(D,C){a B=A(4).U("i");A.1d(B.1H,c(){7(4.b.1q){4.b.1q=0;B.1z=v;4.b.1z=15;7(4.2y){4.b.9.1m=v}4.b.2b(D);4.b.j.2z("3f",[D,A.2c(4.b.g(),{3e:B.j})],4.b.9.3h);4.b.9.d=4.b.9.29}1y{4.b.19("3i",D,B)}})},1c:c(F,E){a D=A(4).U("i"),B=4;a C=c(K){a H=K.6,J=H+K.t,I=K.5,G=I+K.u;n(H<(4.1j.6+4.8.r.6)&&(4.1j.6+4.8.r.6)<J&&I<(4.1j.5+4.8.r.5)&&(4.1j.5+4.8.r.5)<G)};A.1d(D.1H,c(G){7(C.2t(D,4.b.3o)){7(!4.b.1q){4.b.1q=1;4.b.1I=A(B).28().1u(4.b.j).U("27-2q",v);4.b.9.29=4.b.9.d;4.b.9.d=c(){n E.d[0]};F.2a=4.b.1I[0];4.b.3m(F,v);4.b.2n(F,v,v);4.b.8.r.5=D.8.r.5;4.b.8.r.6=D.8.r.6;4.b.8.k.6-=D.8.k.6-4.b.8.k.6;4.b.8.k.5-=D.8.k.5-4.b.8.k.5;D.19("2J",F)}7(4.b.1I){4.b.2d(F)}}1y{7(4.b.1q){4.b.1q=0;4.b.1z=v;4.b.9.1m=15;4.b.2b(F,v);4.b.9.d=4.b.9.29;4.b.1I.2e();7(4.b.2r){4.b.2r.2e()}D.19("32",F)}}})}});A.g.17.1e("i","1n",{18:c(D,B){a C=A.2X(A(B.9.1n.2W)).2R(c(F,E){n(o(A(F).e("Z"),10)||B.9.1n.1B)-(o(A(E).e("Z"),10)||B.9.1n.1B)});A(C).1d(c(E){4.1x.Z=B.9.1n.1B+E});4[0].1x.Z=B.9.1n.1B+C.1C}})})(38);',62,221,'||||this|top|left|if|offset|options|var|instance|function|helper|css|document|ui|containment|draggable|element|parent|relative|position|return|parseInt|offsetParent|scrollTop|click|scrollLeft|width|height|true|helperProportions|||cssPosition|||||||||||||||||||margins|Math|data|absolute|overflowY|convertPositionTo|overflowX|zIndex||scrollSpeed|body|fixed|scrollSensitivity|false|cursorAt|plugin|start|propagate|grid|ddmanager|drag|each|add|abs|originalPosition|test|snapElements|positionAbs|stop|opacity|revert|stack|window|cursor|isOver|pageX|pageY|parentNode|appendTo|scroll|axis|style|else|cancelHelperRemoval|undefined|min|length|auto|HTML|tagName|handle|sortables|currentItem|px|iframeFix|overflow|addClass|borderTopWidth|disabled|absolutePosition|outerHeight|snap|generatePosition|borderLeftWidth|offsetWidth|offsetHeight|_zIndex|_opacity|div|overflowYOffset||_cursor|clear|uiHash|original|overflowXOffset|outerWidth|sortable|clone|_helper|target|mouseStop|extend|mouseDrag|remove|do|max|marginBottom|marginRight|while|bottom|round|dropBehaviour|mouseStart|removeClass|dragging|item|placeholder|right|call|scrollHeight|connectToSortable|snapMode|push|shouldRevert|triggerHandler|is|animate|find|valid|andSelf|resizable|init|plugins|widget|toSortable|null|mouse|mouseInit|invalid|500|isFunction|prepareOffsets|sort|marginTop|destroy|scrollWidth|browser|group|makeArray|mozilla|current|apply|parents|fromSortable|marginLeft|drop|mouseDestroy|outer|DragDropIframeFix|jQuery|activate|001|inner|removeChild|removeData|sender|sortreceive|refreshItems|receive|deactivate|snapTolerance|1000|defaults|mouseCapture|distance|containerCache|input|delay|cancel|for|background|fff|iframe|continue|unbind|class'.split('|'),0,{}))
@@ -1 +0,0 @@
1
- eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('(3(C){C.a={1N:{19:3(E,F,H){6 G=C.a[E].j;1d(6 D 1O H){G.w[D]=G.w[D]||[];G.w[D].1P([F,H[D]])}},1b:3(D,F,E){6 H=D.w[F];5(!H){4}1d(6 G=0;G<H.1M;G++){5(D.b[H[G][0]]){H[G][1].q(D.8,E)}}}},n:{},f:3(D){5(C.a.n[D]){4 C.a.n[D]}6 E=C(\'<1L 1H="a-1I">\').1i(D).f({1J:"1K",X:"-1f",1Q:"-1f",1R:"1X"}).1Y("13");C.a.n[D]=!!((!(/1Z|1W/).g(E.f("1V"))||(/^[1-9]/).g(E.f("1S"))||(/^[1-9]/).g(E.f("1G"))||!(/14/).g(E.f("1U"))||!(/20|1C\\(0, 0, 0, 0\\)/).g(E.f("1y"))));1w{C("13").1a(0).1z(E.1a(0))}1F(F){}4 C.a.n[D]},1A:3(D){D.l="1g";D.17=3(){4 7};5(D.r){D.r.15="14"}},1D:3(D){D.l="1B";D.17=3(){4 d};5(D.r){D.r.15=""}},1E:3(G,E){6 D=/X/.g(E||"X")?"23":"21",F=7;5(G[D]>0){4 d}G[D]=1;F=G[D]>0?d:7;G[D]=0;4 F}};6 B=C.P.p;C.P.p=3(){C("*",2).19(2).2m("p");4 B.q(2,1c)};3 A(E,F,G){6 D=C[E][F].2j||[];D=(R D=="N"?D.V(/,?\\s+/):D);4(C.2i(G,D)!=-1)}C.k=3(E,D){6 F=E.V(".")[0];E=E.V(".")[1];C.P[E]=3(J){6 H=(R J=="N"),I=2n.j.2o.1b(1c,1);5(H&&A(F,E,J)){6 G=C.M(2[0],E);4(G?G[J].q(G,I):2p)}4 2.2g(3(){6 K=C.M(2,E);5(H&&K&&C.2f(K[J])){K[J].q(K,I)}27{5(!H){C.M(2,E,24 C[F][E](2,J))}}})};C[F][E]=3(I,H){6 G=2;2.e=E;2.16=F+"-"+E;2.b=C.1e({},C.k.u,C[F][E].u,H);2.8=C(I).h("i."+E,3(L,J,K){4 G.i(J,K)}).h("O."+E,3(K,J){4 G.O(J)}).h("p",3(){4 G.1h()});2.18()};C[F][E].j=C.1e({},C.k.j,D)};C.k.j={18:3(){},1h:3(){2.8.2q(2.e)},O:3(D){4 2.b[D]},i:3(D,E){2.b[D]=E;5(D=="o"){2.8[E?"1i":"29"](2.16+"-o")}},22:3(){2.i("o",7)},25:3(){2.i("o",d)}};C.k.u={o:7};C.a.1n={2r:3(){6 D=2;2.8.h("2h."+2.e,3(E){4 D.1t(E)});5(C.z.y){2.1v=2.8.x("l");2.8.x("l","1g")}2.2l=7},2k:3(){2.8.S("."+2.e);(C.z.y&&2.8.x("l",2.1v))},1t:3(F){(2.c&&2.m(F));2.v=F;6 E=2,G=(F.26==1),D=(R 2.b.Y=="N"?C(F.28).2c(2.b.Y):7);5(!G||D||!2.1m(F)){4 d}2.t=!2.b.Q;5(!2.t){2.2b=2a(3(){E.t=d},2.b.Q)}5(2.T(F)&&2.U(F)){2.c=(2.Z(F)!==7);5(!2.c){F.2d();4 d}}2.10=3(H){4 E.1o(H)};2.12=3(H){4 E.m(H)};C(1q).h("1j."+2.e,2.10).h("1u."+2.e,2.12);4 7},1o:3(D){5(C.z.y&&!D.2s){4 2.m(D)}5(2.c){2.11(D);4 7}5(2.T(D)&&2.U(D)){2.c=(2.Z(2.v,D)!==7);(2.c?2.11(D):2.m(D))}4!2.c},m:3(D){C(1q).S("1j."+2.e,2.10).S("1u."+2.e,2.12);5(2.c){2.c=7;2.1k(D)}4 7},T:3(D){4(W.1T(W.1s(2.v.1r-D.1r),W.1s(2.v.1p-D.1p))>=2.b.1l)},U:3(D){4 2.t},Z:3(D){},11:3(D){},1k:3(D){},1m:3(D){4 d}};C.a.1n.u={Y:1x,1l:1,Q:0}})(2e);',62,153,'||this|function|return|if|var|false|element||ui|options|_mouseStarted|true|widgetName|css|test|bind|setData|prototype|widget|unselectable|mouseUp|cssCache|disabled|remove|apply|style||_mouseDelayMet|defaults|_mouseDownEvent|plugins|attr|msie|browser|||||||||||||data|string|getData|fn|delay|typeof|unbind|mouseDistanceMet|mouseDelayMet|split|Math|top|cancel|mouseStart|_mouseMoveDelegate|mouseDrag|_mouseUpDelegate|body|none|MozUserSelect|widgetBaseClass|onselectstart|init|add|get|call|arguments|for|extend|5000px|on|destroy|addClass|mousemove|mouseStop|distance|mouseCapture|mouse|mouseMove|pageY|document|pageX|abs|mouseDown|mouseup|_mouseUnselectable|try|null|backgroundColor|removeChild|disableSelection|off|rgba|enableSelection|hasScroll|catch|width|class|gen|position|absolute|div|length|plugin|in|push|left|display|height|max|backgroundImage|cursor|default|block|appendTo|auto|transparent|scrollLeft|enable|scrollTop|new|disable|which|else|target|removeClass|setTimeout|_mouseDelayTimer|is|preventDefault|jQuery|isFunction|each|mousedown|inArray|getter|mouseDestroy|started|trigger|Array|slice|undefined|removeData|mouseInit|button'.split('|'),0,{}))
@@ -1 +0,0 @@
1
- eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('(h(A){A.3n("b.d",A.17(A.b.3w,{3u:h(){f M=4,N=4.m;f Q=4.j.c("g");4.2p=4.j;4.j.1j("b-d").c({g:/1W/.q(Q)?"1i":Q});A.17(N,{1J:!!(N.19),l:N.l||N.13||N.1q?N.l||"3p":1l,1k:N.1k===1x?"b-d-1N-11":N.1k});f H="2A 3a #3t";N.3h={"b-d":{22:"2H"},"b-d-11":{g:"1z",3j:"#3g",3v:"0.2A"},"b-d-n":{t:"n-o",8:"14",5:"p",1t:"p",2C:H},"b-d-s":{t:"s-o",8:"14",5:"p",1t:"p",2z:H},"b-d-e":{t:"e-o",6:"14",9:"p",1s:"p",2E:H},"b-d-w":{t:"w-o",6:"14",9:"p",1s:"p",2F:H},"b-d-y":{t:"y-o",6:"14",8:"14",2E:H,2z:H},"b-d-z":{t:"z-o",6:"14",8:"14",2z:H,2F:H},"b-d-Z":{t:"Z-o",6:"14",8:"14",2E:H,2C:H},"b-d-x":{t:"x-o",6:"14",8:"14",2F:H,2C:H}};N.2g={"b-d-11":{3j:"#3g",3G:"2A 3a #3F",8:"3c",6:"3c"},"b-d-n":{t:"n-o",9:"p",5:"45%"},"b-d-s":{t:"s-o",1s:"p",5:"45%"},"b-d-e":{t:"e-o",1t:"p",9:"45%"},"b-d-w":{t:"w-o",5:"p",9:"45%"},"b-d-y":{t:"y-o",1t:"p",1s:"p"},"b-d-z":{t:"z-o",5:"p",1s:"p"},"b-d-x":{t:"x-o",5:"p",9:"p"},"b-d-Z":{t:"Z-o",1t:"p",9:"p"}};N.2s=4.j[0].2B;a(N.2s.2l(/3L|29|2a|2N|2K|3D/i)){f B=4.j;a(/1i/.q(B.c("g"))&&A.1e.2Q){B.c({g:"1i",9:"1T",5:"1T"})}B.3E(A(\'<1B 3l="b-2n" 2t="2x: 2h;"></1B>\').c({g:B.c("g"),6:B.1u(),8:B.1v(),9:B.c("9"),5:B.c("5")}));f J=4.j;4.j=4.j.1G();4.j.12("d",4);4.j.c({2c:J.c("2c"),2b:J.c("2b"),2i:J.c("2i"),2e:J.c("2e")});J.c({2c:0,2b:0,2i:0,2e:0});a(A.1e.3C&&N.3b){J.c("o","36")}N.1g=J.c({g:"1W",3B:1,22:"2H"});4.j.c({2w:J.c("2w")});4.1Q()}a(!N.u){N.u=!A(".b-d-11",4.j).1H?"e,s,y":{n:".b-d-n",e:".b-d-e",s:".b-d-s",w:".b-d-w",y:".b-d-y",z:".b-d-z",Z:".b-d-Z",x:".b-d-x"}}a(N.u.2P==2R){N.1D=N.1D||3y;a(N.u=="3z"){N.u="n,e,s,w,y,z,Z,x"}f O=N.u.3A(",");N.u={};f G={11:"g: 1z; 22: 36; 2x:2h;",n:"9: 1o; 6:28%;",e:"1t: 1o; 8:28%;",s:"1s: 1o; 6:28%;",w:"5: 1o; 8:28%;",y:"1s: 1o; 1t: p;",z:"1s: 1o; 5: p;",Z:"9: 1o; 1t: p;",x:"9: 1o; 5: p;"};2m(f R=0;R<O.1H;R++){f S=A.3N(O[R]),L=N.3h,F="b-d-"+S,C=!A.b.c(F)&&!N.1k,P=A.b.c("b-d-1N-11"),T=A.17(L[F],L["b-d-11"]),D=A.17(N.2g[F],!P?N.2g["b-d-11"]:{});f K=/z|y|Z|x/.q(S)?{1D:++N.1D}:{};f I=(C?G[S]:""),E=A([\'<1B 3l="b-d-11 \',F,\'" 2t="\',I,G.11,\'"></1B>\'].2o("")).c(K);N.u[S]=".b-d-"+S;4.j.35(E.c(C?T:{}).c(N.1k?D:{}).1j(N.1k?"b-d-1N-11":"").1j(N.1k))}a(N.1k){4.j.1j("b-d-1N").c(!A.b.c("b-d-1N")?{}:{})}}4.2V=h(Y){Y=Y||4.j;2m(f V 2L N.u){a(N.u[V].2P==2R){N.u[V]=A(N.u[V],4.j).2M()}a(N.2u){N.u[V].c({34:0})}a(4.j.2q(".b-2n")&&N.2s.2l(/29|2a|2N|2K/i)){f W=A(N.u[V],4.j),X=0;X=/z|Z|x|y|n|s/.q(V)?W.1v():W.1u();f U=["3O",/Z|x|n/.q(V)?"3M":/y|z|s/.q(V)?"3x":/^e$/.q(V)?"3I":"3J"].2o("");a(!N.2u){Y.c(U,X)}4.1Q()}a(!A(N.u[V]).1H){3K}}};4.2V(4.j);N.1y=A(".b-d-11",M.j);a(N.1L){N.1y.1E(h(U,V){A.b.1L(V)})}N.1y.3P(h(){a(!N.24){a(4.37){f U=4.37.2l(/b-d-(y|z|Z|x|n|e|s|w)/i)}M.1w=N.1w=U&&U[1]?U[1]:"y"}});a(N.3d){N.1y.38();A(M.j).1j("b-d-2k").3s(h(){A(4).3e("b-d-2k");N.1y.2M()},h(){a(!N.24){A(4).1j("b-d-2k");N.1y.38()}})}4.3r()},3q:{},b:h(){r{2p:4.2p,j:4.j,l:4.l,g:4.g,k:4.k,m:4.m,16:4.16,15:4.15}},1U:h(C,B){A.b.1F.3o(4,C,[B,4.b()]);a(C!="o"){4.j.33(["o",C].2o(""),[B,4.b()],4.m[C])}},3H:h(){f D=4.j,C=D.3V(".b-d").1d(0);4.4p();f B=h(E){A(E).3e("b-d b-d-3m").3f("d").4q(".d").4n(".b-d-11").2v()};B(D);a(D.2q(".b-2n")&&C){D.1G().35(A(C).c({g:D.c("g"),6:D.1u(),8:D.1v(),9:D.c("9"),5:D.c("5")})).4g().2v();B(C)}},4f:h(K){a(4.m.3m){r 1b}f J=1b;2m(f H 2L 4.m.u){a(A(4.m.u[H])[0]==K.4i){J=1x}}a(!J){r 1b}f C=4.m,B=4.j.g(),D=4.j,I=h(O){r v(O,10)||0},G=A.1e.20&&A.1e.2d<7;C.24=1x;C.2r={9:A(1n).4j(),5:A(1n).4h()};a(D.2q(".b-4k")||(/1z/).q(D.c("g"))){f M=A.1e.20&&!C.2G&&(/1z/).q(D.c("g"))&&!(/1i/).q(D.1G().c("g"));f L=M?C.2r.9:0,F=M?C.2r.5:0;D.c({g:"1z",9:(B.9+L),5:(B.5+F)})}a(A.1e.2Q&&/1i/.q(D.c("g"))){D.c({g:"1i",9:"1T",5:"1T"})}4.2Z();f N=I(4.l.c("5")),E=I(4.l.c("9"));4.1h=4.l.1h();4.g={5:N,9:E};4.k=C.l||G?{6:D.1u(),8:D.1v()}:{6:D.6(),8:D.8()};4.16=C.l||G?{6:D.1u(),8:D.1v()}:{6:D.6(),8:D.8()};4.15={5:N,9:E};4.1p={6:D.1u()-D.6(),8:D.1v()-D.8()};4.2O={5:K.2U,9:K.2X};C.19=(1R C.19=="2W")?C.19:((4.16.8/4.16.6)||1);a(C.2I){A("26").c("t",4.1w+"-o")}4.1U("1O",K);r 1x},3Q:h(I){f D=4.l,C=4.m,J={},M=4,F=4.2O,K=4.1w;f N=(I.2U-F.5)||0,L=(I.2X-F.9)||0;f E=4.1c[K];a(!E){r 1b}f H=E.1m(4,[I,N,L]),G=A.1e.20&&A.1e.2d<7,B=4.1p;a(C.1J||I.1Y){H=4.32(H,I)}H=4.31(H,I);4.1U("o",I);D.c({9:4.g.9+"1r",5:4.g.5+"1r",6:4.k.6+"1r",8:4.k.8+"1r"});a(!C.l&&C.1g){4.1Q()}4.2j(H);4.j.33("o",[I,4.b()],4.m.o);r 1b},4l:h(I){4.m.24=1b;f E=4.m,H=h(M){r v(M,10)||0},K=4;a(E.l){f D=E.1g,B=D&&(/29/i).q(D.1d(0).2B),C=B&&A.b.1X(D.1d(0),"5")?0:K.1p.8,G=B?0:K.1p.6;f L={6:(K.k.6-G),8:(K.k.8-C)},F=(v(K.j.c("5"),10)+(K.g.5-K.15.5))||1l,J=(v(K.j.c("9"),10)+(K.g.9-K.15.9))||1l;a(!E.1q){4.j.c(A.17(L,{9:J,5:F}))}a(E.l&&!E.1q){4.1Q()}}a(E.2I){A("26").c("t","1T")}4.1U("1P",I);a(E.l){4.l.2v()}r 1b},2j:h(B){f C=4.m;4.1h=4.l.1h();a(B.5){4.g.5=B.5}a(B.9){4.g.9=B.9}a(B.8){4.k.8=B.8}a(B.6){4.k.6=B.6}},32:h(D,E){f F=4.m,G=4.g,C=4.k,B=4.1w;a(D.8){D.6=(C.8/F.19)}1a{a(D.6){D.8=(C.6*F.19)}}a(B=="z"){D.5=G.5+(C.6-D.6);D.9=1l}a(B=="x"){D.9=G.9+(C.8-D.8);D.5=G.5+(C.6-D.6)}r D},31:h(H,I){f F=4.l,E=4.m,N=E.1J||I.1Y,M=4.1w,P=H.6&&E.1V&&E.1V<H.6,J=H.8&&E.1Z&&E.1Z<H.8,D=H.6&&E.1M&&E.1M>H.6,O=H.8&&E.1S&&E.1S>H.8;a(D){H.6=E.1M}a(O){H.8=E.1S}a(P){H.6=E.1V}a(J){H.8=E.1Z}f C=4.15.5+4.16.6,L=4.g.9+4.k.8;f G=/z|x|w/.q(M),B=/x|Z|n/.q(M);a(D&&G){H.5=C-E.1M}a(P&&G){H.5=C-E.1V}a(O&&B){H.9=L-E.1S}a(J&&B){H.9=L-E.1Z}f K=!H.6&&!H.8;a(K&&!H.5&&H.9){H.9=1l}1a{a(K&&!H.9&&H.5){H.5=1l}}r H},1Q:h(){f F=4.m;a(!F.1g){r}f D=F.1g,C=4.l||4.j;a(!F.1C){f B=[D.c("4o"),D.c("4r"),D.c("4s"),D.c("4m")],E=[D.c("4d"),D.c("3X"),D.c("3Y"),D.c("3Z")];F.1C=A.40(B,h(G,I){f H=v(G,10)||0,J=v(E[I],10)||0;r H+J})}D.c({8:(C.8()-F.1C[0]-F.1C[2])+"1r",6:(C.6()-F.1C[1]-F.1C[3])+"1r"})},2Z:h(){f C=4.j,F=4.m;4.2f=C.1h();a(F.l){4.l=4.l||A(\'<1B 2t="2x:2h;"></1B>\');f B=A.1e.20&&A.1e.2d<7,D=(B?1:0),E=(B?2:-1);4.l.1j(F.l).c({6:C.1u()+E,8:C.1v()+E,g:"1z",5:4.2f.5-D+"1r",9:4.2f.9-D+"1r",1D:++F.1D});4.l.39("26");a(F.1L){A.b.1L(4.l.1d(0))}}1a{4.l=C}},1c:{e:h(D,C,B){r{6:4.16.6+C}},w:h(F,C,B){f G=4.m,D=4.16,E=4.15;r{5:E.5+C,6:D.6-C}},n:h(F,C,B){f G=4.m,D=4.16,E=4.15;r{9:E.9+B,8:D.8-B}},s:h(D,C,B){r{8:4.16.8+B}},y:h(D,C,B){r A.17(4.1c.s.1m(4,27),4.1c.e.1m(4,[D,C,B]))},z:h(D,C,B){r A.17(4.1c.s.1m(4,27),4.1c.w.1m(4,[D,C,B]))},Z:h(D,C,B){r A.17(4.1c.n.1m(4,27),4.1c.e.1m(4,[D,C,B]))},x:h(D,C,B){r A.17(4.1c.n.1m(4,27),4.1c.w.1m(4,[D,C,B]))}}}));A.17(A.b.d,{3S:{3T:":2a",3U:1,41:0,3b:1x,2u:1b,1M:10,1S:10,19:1b,1L:1x,2I:1x,3d:1b,1k:1b}});A.b.1F.1K("d","2G",{1O:h(I,K){f E=K.m,M=A(4).12("d"),G=M.j;f C=E.2G,F=(C 49 A)?C.1d(0):(/1G/.q(C))?G.1G().1d(0):C;a(!F){r}M.2D=A(F);a(/1n/.q(C)||C==1n){M.1I={5:0,9:0};M.23={5:0,9:0};M.1A={j:A(1n),5:0,9:0,6:A(1n).6(),8:A(1n).8()||1n.26.43.3k}}1a{M.1I=A(F).1h();M.23=A(F).g();M.21={8:A(F).30(),6:A(F).2T()};f J=M.1I,B=M.21.8,H=M.21.6,D=(A.b.1X(F,"5")?F.44:H),L=(A.b.1X(F)?F.3k:B);M.1A={j:F,5:J.5,9:J.9,6:D,8:L}}},o:h(H,K){f E=K.m,N=A(4).12("d"),C=N.21,J=N.1I,G=N.k,I=N.g,L=E.1J||H.1Y,B={9:0,5:0},D=N.2D;a(D[0]!=1n&&/1W/.q(D.c("g"))){B=N.23}a(I.5<(E.l?J.5:B.5)){N.k.6=N.k.6+(E.l?(N.g.5-J.5):(N.g.5-B.5));a(L){N.k.8=N.k.6*E.19}N.g.5=E.l?J.5:B.5}a(I.9<(E.l?J.9:0)){N.k.8=N.k.8+(E.l?(N.g.9-J.9):N.g.9);a(L){N.k.6=N.k.8/E.19}N.g.9=E.l?J.9:0}f F=(E.l?N.1h.5-J.5:(N.g.5-B.5))+N.1p.6,M=(E.l?N.1h.9-J.9:N.g.9)+N.1p.8;a(F+N.k.6>=N.1A.6){N.k.6=N.1A.6-F;a(L){N.k.8=N.k.6*E.19}}a(M+N.k.8>=N.1A.8){N.k.8=N.1A.8-M;a(L){N.k.6=N.k.8/E.19}}},1P:h(G,J){f C=J.m,L=A(4).12("d"),H=L.g,I=L.1I,B=L.23,D=L.2D;f E=A(L.l),M=E.1h(),K=E.2T(),F=E.30();a(C.l&&!C.1q&&/1i/.q(D.c("g"))){A(4).c({5:(M.5-I.5),9:(M.9-I.9),6:K,8:F})}a(C.l&&!C.1q&&/1W/.q(D.c("g"))){A(4).c({5:B.5+(M.5-I.5),9:B.9+(M.9-I.9),6:K,8:F})}}});A.b.1F.1K("d","1f",{o:h(H,J){f D=J.m,L=A(4).12("d"),G=L.k,E=L.16,F=L.15,K=L.1w,I=D.1J||H.1Y;D.1f=1R D.1f=="2W"?[D.1f,D.1f]:D.1f;f C=2J.2S((G.6-E.6)/(D.1f[0]||1))*(D.1f[0]||1),B=2J.2S((G.8-E.8)/(D.1f[1]||1))*(D.1f[1]||1);a(/^(y|s|e)$/.q(K)){L.k.6=E.6+C;L.k.8=E.8+B}1a{a(/^(Z)$/.q(K)){L.k.6=E.6+C;L.k.8=E.8+B;L.g.9=F.9-B}1a{a(/^(z)$/.q(K)){L.k.6=E.6+C;L.k.8=E.8+B;L.g.5=F.5-C}1a{L.k.6=E.6+C;L.k.8=E.8+B;L.g.9=F.9-B;L.g.5=F.5-C}}}}});A.b.1F.1K("d","1q",{1P:h(I,K){f F=K.m,L=A(4).12("d");f E=F.1g,B=E&&(/29/i).q(E.1d(0).2B),C=B&&A.b.1X(E.1d(0),"5")?0:L.1p.8,H=B?0:L.1p.6;f D={6:(L.k.6-H),8:(L.k.8-C)},G=(v(L.j.c("5"),10)+(L.g.5-L.15.5))||1l,J=(v(L.j.c("9"),10)+(L.g.9-L.15.9))||1l;L.j.1q(A.17(D,J&&G?{9:J,5:G}:{}),{48:F.4c||"4b",4a:F.42||"4e",3W:h(){f M={6:v(L.j.c("6"),10),8:v(L.j.c("8"),10),9:v(L.j.c("9"),10),5:v(L.j.c("5"),10)};a(E){E.c({6:M.6,8:M.8})}L.2j(M);L.1U("1q",I)}})}});A.b.1F.1K("d","13",{1O:h(E,D){f F=D.m,B=A(4).12("d"),G=F.1g,C=B.k;a(!G){B.13=B.j.2Y()}1a{B.13=G.2Y()}B.13.c({34:0.25,22:"2H",g:"1i",8:C.8,6:C.6,2w:0,5:0,9:0}).1j("b-d-13").1j(1R F.13=="47"?F.13:"");B.13.39(B.l)},o:h(D,C){f E=C.m,B=A(4).12("d"),F=E.1g;a(B.13){B.13.c({g:"1i",8:B.k.8,6:B.k.6})}},1P:h(D,C){f E=C.m,B=A(4).12("d"),F=E.1g;a(B.13&&B.l){B.l.1d(0).46(B.13.1d(0))}}});A.b.1F.1K("d","18",{1O:h(E,C){f F=C.m,B=A(4).12("d"),D=h(G){A(G).1E(h(){A(4).12("d-2y",{6:v(A(4).6(),10),8:v(A(4).8(),10),5:v(A(4).c("5"),10),9:v(A(4).c("9"),10)})})};a(1R(F.18)=="3i"){a(F.18.1H){F.18=F.18[0];D(F.18)}1a{A.1E(F.18,h(G,H){D(G)})}}1a{D(F.18)}},o:h(F,E){f G=E.m,C=A(4).12("d"),D=C.16,I=C.15;f H={8:(C.k.8-D.8)||0,6:(C.k.6-D.6)||0,9:(C.g.9-I.9)||0,5:(C.g.5-I.5)||0},B=h(J,K){A(J).1E(h(){f N=A(4).12("d-2y"),M={},L=K&&K.1H?K:["6","8","9","5"];A.1E(L||["6","8","9","5"],h(O,Q){f P=(N[Q]||0)+(H[Q]||0);a(P&&P>=0){M[Q]=P||1l}});A(4).c(M)})};a(1R(G.18)=="3i"){A.1E(G.18,h(J,K){B(J,K)})}1a{B(G.18)}},1P:h(C,B){A(4).3f("d-2y-1O")}})})(3R);',62,277,'||||this|left|width||height|top|if|ui|css|resizable||var|position|function||element|size|helper|options||resize|0px|test|return||cursor|handles|parseInt||nw|se|sw||||||||||||||||||||||||||ne||handle|data|ghost|4px|originalPosition|originalSize|extend|alsoResize|aspectRatio|else|false|_change|get|browser|grid|proportionallyResize|offset|relative|addClass|knobHandles|null|apply|document|0pt|sizeDiff|animate|px|bottom|right|outerWidth|outerHeight|axis|true|_handles|absolute|parentData|div|borderDif|zIndex|each|plugin|parent|length|containerOffset|_aspectRatio|add|disableSelection|minWidth|knob|start|stop|_proportionallyResize|typeof|minHeight|auto|propagate|maxWidth|static|hasScroll|shiftKey|maxHeight|msie|containerSize|display|containerPosition|resizing||body|arguments|100|textarea|input|marginTop|marginLeft|version|marginBottom|elementOffset|knobTheme|hidden|marginRight|_updateCache|autohide|match|for|wrapper|join|originalElement|is|documentScroll|_nodeName|style|transparent|remove|margin|overflow|alsoresize|borderBottom|1px|nodeName|borderTop|containerElement|borderRight|borderLeft|containment|block|preserveCursor|Math|button|in|show|select|originalMousePosition|constructor|opera|String|round|innerWidth|pageX|_renderAxis|number|pageY|clone|_renderProxy|innerHeight|_respectSize|_updateRatio|triggerHandler|opacity|append|none|className|hide|appendTo|solid|preventDefault|8px|autoHide|removeClass|removeData|F2F2F2|defaultTheme|object|background|scrollHeight|class|disabled|widget|call|proxy|plugins|mouseInit|hover|DEDEDE|init|fontSize|mouse|Bottom|1000|all|split|zoom|safari|img|wrap|808080|border|destroy|Right|Left|continue|canvas|Top|trim|padding|mouseover|mouseDrag|jQuery|defaults|cancel|distance|children|step|paddingRight|paddingBottom|paddingLeft|map|delay|animateEasing|parentNode|scrollWidth||removeChild|string|duration|instanceof|easing|slow|animateDuration|paddingTop|swing|mouseStart|end|scrollLeft|target|scrollTop|draggable|mouseStop|borderLeftWidth|find|borderTopWidth|mouseDestroy|unbind|borderRightWidth|borderBottomWidth'.split('|'),0,{}))
@@ -1 +0,0 @@
1
- eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('(b(B){b A(E,D){9 C=B.2M.3e&&B.2M.3f<3g;5(E.2I&&!C){e E.2I(D)}5(E.2E){e!!(E.2E(D)&16)}1Q(D=D.1e){5(D==E){e V}}e L}B.3d("j.p",B.2r({},B.j.3c,{38:b(){9 C=4.8;4.R={};4.g.22("j-p");4.2B();4.Z=4.c.z?(/6|1Z/).1c(4.c[0].t.f("39")):L;5(!(/(2U|1j|3a)/).1c(4.g.f("Q"))){4.g.f("Q","2U")}4.a=4.g.a();4.3b()},3h:{},j:b(C){e{l:(C||4)["l"],r:(C||4)["r"]||B([]),Q:(C||4)["Q"],3i:(C||4)["17"],8:4.8,g:4.g,t:(C||4)["h"],3o:C?C.g:O}},v:b(F,E,C,D){B.j.1g.X(4,F,[E,4.j(C)]);5(!D){4.g.2Y(F=="1b"?F:"1b"+F,[E,4.j(C)],4.8[F])}},2F:b(E){9 C=(B.1E(4.8.c)?4.8.c.X(4.g):B(4.8.c,4.g)).2a(".j-p-l");9 D=[];E=E||{};C.1x(b(){9 F=(B(4).2f(E.3p||"2g")||"").3q(E.2j||(/(.+)[-=3n](.+)/));5(F){D.1u((E.2m||F[1])+"[]="+(E.2m&&E.2j?F[1]:F[2]))}});e D.37("&")},2V:b(C){9 D=(B.1E(4.8.c)?4.8.c.X(4.g):B(4.8.c,4.g)).2a(".j-p-l");9 E=[];D.1x(b(){E.1u(B(4).2f(C||"2g"))});e E},2R:b(J){9 E=4.17.6,D=E+4.s.n,I=4.17.7,H=I+4.s.o;9 F=J.6,C=F+J.n,K=J.7,G=K+J.o;5(4.8.1p=="2n"||4.8.3j||(4.8.1p=="2e"&&4.s[4.Z?"n":"o"]>J[4.Z?"n":"o"])){e(I+4.a.q.7>K&&I+4.a.q.7<G&&E+4.a.q.6>F&&E+4.a.q.6<C)}Y{e(F<E+(4.s.n/2)&&D-(4.s.n/2)<C&&K<I+(4.s.o/2)&&H-(4.s.o/2)<G)}},2x:b(J){9 E=4.17.6,D=E+4.s.n,I=4.17.7,H=I+4.s.o;9 F=J.6,C=F+J.n,K=J.7,G=K+J.o;5(4.8.1p=="2n"||(4.8.1p=="2e"&&4.s[4.Z?"n":"o"]>J[4.Z?"n":"o"])){5(!(I+4.a.q.7>K&&I+4.a.q.7<G&&E+4.a.q.6>F&&E+4.a.q.6<C)){e L}5(4.Z){5(E+4.a.q.6>F&&E+4.a.q.6<F+J.n/2){e 2}5(E+4.a.q.6>F+J.n/2&&E+4.a.q.6<C){e 1}}Y{5(I+4.a.q.7>K&&I+4.a.q.7<K+J.o/2){e 2}5(I+4.a.q.7>K+J.o/2&&I+4.a.q.7<G){e 1}}}Y{5(!(F<E+(4.s.n/2)&&D-(4.s.n/2)<C&&K<I+(4.s.o/2)&&H-(4.s.o/2)<G)){e L}5(4.Z){5(D>F&&E<F){e 2}5(E<C&&D>C){e 1}}Y{5(H>K&&I<K){e 1}5(I<G&&H>G){e 2}}}e L},2B:b(){4.28();4.1I()},28:b(){4.c=[];4.d=[4];9 D=4.c;9 C=4;9 F=[[B.1E(4.8.c)?4.8.c.X(4.g,O,{8:4.8,t:4.h}):B(4.8.c,4.g),4]];5(4.8.1S){P(9 G=4.8.1S.z-1;G>=0;G--){9 I=B(4.8.1S[G]);P(9 E=I.z-1;E>=0;E--){9 H=B.1f(I[E],"p");5(H&&!H.8.26){F.1u([B.1E(H.8.c)?H.8.c.X(H.g):B(H.8.c,H.g),H]);4.d.1u(H)}}}}P(9 G=F.z-1;G>=0;G--){F[G][0].1x(b(){B.1f(4,"p-t",F[G][1]);D.1u({t:B(4),2y:F[G][1],n:0,o:0,6:0,7:0})})}},1I:b(D){5(4.u){9 C=4.u.a();4.a.m={7:C.7+4.1w.7,6:C.6+4.1w.6}}P(9 F=4.c.z-1;F>=0;F--){5(4.c[F].2y!=4.1q&&4.1q&&4.c[F].t[0]!=4.h[0]){1C}9 E=4.8.2z?B(4.8.2z,4.c[F].t):4.c[F].t;5(!D){4.c[F].n=E[0].24;4.c[F].o=E[0].1X}9 G=E.a();4.c[F].6=G.6;4.c[F].7=G.7}5(4.8.1O&&4.8.1O.2w){4.8.1O.2w.X(4)}Y{P(9 F=4.d.z-1;F>=0;F--){9 G=4.d[F].g.a();4.d[F].R.6=G.6;4.d[F].R.7=G.7;4.d[F].R.n=4.d[F].g.1z();4.d[F].R.o=4.d[F].g.1H()}}},3l:b(){4.g.3r("j-p j-p-26").2i("p").30(".p");4.34();P(9 C=4.c.z-1;C>=0;C--){4.c[C].t.2i("p-t")}},21:b(E){9 C=E||4,F=C.8;5(F.r.31==2Z){9 D=F.r;F.r={g:b(){e B("<2S></2S>").22(D)[0]},1o:b(G,H){H.f(G.a()).f({n:G.1z(),o:G.1H()})}}}C.r=B(F.r.g.X(C.g,C.h)).1M("W").f({Q:"1j"});F.r.1o.X(C.g,C.h,C.r)},2X:b(F){P(9 D=4.d.z-1;D>=0;D--){5(4.2R(4.d[D].R)){5(!4.d[D].R.1d){5(4.1q!=4.d[D]){9 I=36;9 H=O;9 E=4.17[4.d[D].Z?"6":"7"];P(9 C=4.c.z-1;C>=0;C--){5(!A(4.d[D].g[0],4.c[C].t[0])){1C}9 G=4.c[C][4.d[D].Z?"6":"7"];5(1m.2D(G-E)<I){I=1m.2D(G-E);H=4.c[C]}}5(!H&&!4.8.2C){1C}5(4.r){4.r.1A()}5(4.d[D].8.r){4.d[D].21(4)}Y{4.r=O}4.1q=4.d[D];H?4.1B(F,H,O,V):4.1B(F,O,4.d[D].g,V);4.v("1T",F);4.d[D].v("1T",F,4)}4.d[D].v("1d",F,4);4.d[D].R.1d=1}}Y{5(4.d[D].R.1d){4.d[D].v("2p",F,4);4.d[D].R.1d=0}}}},35:b(G,F){5(4.8.26||4.8.2T=="33"){e L}4.28();9 E=O,D=4,C=B(G.1D).2P().1x(b(){5(B.1f(4,"p-t")==D){E=B(4);e L}});5(B.1f(G.1D,"p-t")==D){E=B(G.1D)}5(!E){e L}5(4.8.2L&&!F){9 H=L;B(4.8.2L,E).3m("*").3A().1x(b(){5(4==G.1D){H=V}});5(!H){e L}}4.h=E;e V},3P:b(H,F,C){9 J=4.8;4.1q=4;4.1I();4.l=3L J.l=="b"?B(J.l.3M(4.g[0],[H,4.h])):4.h.2c();5(!4.l.2P("W").z){B(J.1M!="m"?J.1M:4.h[0].1e)[0].2O(4.l[0])}4.l.f({Q:"1j",1F:"3N"}).22("j-p-l");4.T={6:(w(4.h.f("3S"),10)||0),7:(w(4.h.f("3T"),10)||0)};4.a=4.h.a();4.a={7:4.a.7-4.T.7,6:4.a.6-4.T.6};4.a.q={6:H.1l-4.a.6,7:H.1k-4.a.7};4.u=4.l.u();9 D=4.u.a();4.1w={7:(w(4.u.f("29"),10)||0),6:(w(4.u.f("27"),10)||0)};4.a.m={7:D.7+4.1w.7,6:D.6+4.1w.6};4.15=4.1R(H);4.2d={1t:4.h.1t()[0],m:4.h.m()[0]};4.s={n:4.l.1z(),o:4.l.1H()};5(J.r){4.21()}4.v("1v",H);4.s={n:4.l.1z(),o:4.l.1H()};5(J.13){5(J.13.6!=1G){4.a.q.6=J.13.6}5(J.13.1Z!=1G){4.a.q.6=4.s.n-J.13.1Z}5(J.13.7!=1G){4.a.q.7=J.13.7}5(J.13.2t!=1G){4.a.q.7=4.s.o-J.13.2t}}5(J.k){5(J.k=="m"){J.k=4.l[0].1e}5(J.k=="i"||J.k=="1h"){4.k=[0-4.a.m.6,0-4.a.m.7,B(J.k=="i"?i:1h).n()-4.a.m.6-4.s.n-4.T.6-(w(4.g.f("2u"),10)||0),(B(J.k=="i"?i:1h).o()||i.W.1e.2q)-4.a.m.7-4.s.o-4.T.7-(w(4.g.f("2v"),10)||0)]}5(!(/^(i|1h|m)$/).1c(J.k)){9 G=B(J.k)[0];9 I=B(J.k).a();4.k=[I.6+(w(B(G).f("27"),10)||0)-4.a.m.6,I.7+(w(B(G).f("29"),10)||0)-4.a.m.7,I.6+1m.2s(G.3W,G.24)-(w(B(G).f("27"),10)||0)-4.a.m.6-4.s.n-4.T.6-(w(4.h.f("2u"),10)||0),I.7+1m.2s(G.2q,G.1X)-(w(B(G).f("29"),10)||0)-4.a.m.7-4.s.o-4.T.7-(w(4.h.f("2v"),10)||0)]}}5(4.8.r!="2c"){4.h.f("2A","3K")}5(!C){P(9 E=4.d.z-1;E>=0;E--){4.d[E].v("3y",H,4)}}5(B.j.18){B.j.18.3z=4}5(B.j.18&&!J.2J){B.j.18.3u(4,H)}4.2N=V;4.2o(H);e V},1P:b(D,E){5(!E){E=4.Q}9 C=D=="1j"?1:-1;e{7:(E.7+4.a.m.7*C-(4.u[0]==i.W?0:4.u[0].N)*C+4.T.7*C),6:(E.6+4.a.m.6*C-(4.u[0]==i.W?0:4.u[0].M)*C+4.T.6*C)}},1R:b(F){9 G=4.8;9 C={7:(F.1k-4.a.q.7-4.a.m.7+(4.u[0]==i.W?0:4.u[0].N)),6:(F.1l-4.a.q.6-4.a.m.6+(4.u[0]==i.W?0:4.u[0].M))};5(!4.15){e C}5(4.k){5(C.6<4.k[0]){C.6=4.k[0]}5(C.7<4.k[1]){C.7=4.k[1]}5(C.6>4.k[2]){C.6=4.k[2]}5(C.7>4.k[3]){C.7=4.k[3]}}5(G.11){9 E=4.15.7+1m.2h((C.7-4.15.7)/G.11[1])*G.11[1];C.7=4.k?(!(E<4.k[1]||E>4.k[3])?E:(!(E<4.k[1])?E-G.11[1]:E+G.11[1])):E;9 D=4.15.6+1m.2h((C.6-4.15.6)/G.11[0])*G.11[0];C.6=4.k?(!(D<4.k[0]||D>4.k[2])?D:(!(D<4.k[0])?D-G.11[0]:D+G.11[0])):D}e C},2o:b(D){4.Q=4.1R(D);4.17=4.1P("1j");B.j.1g.X(4,"1b",[D,4.j()]);4.17=4.1P("1j");4.l[0].2l.6=4.Q.6+"2k";4.l[0].2l.7=4.Q.7+"2k";P(9 C=4.c.z-1;C>=0;C--){9 E=4.2x(4.c[C]);5(!E){1C}5(4.c[C].t[0]!=4.h[0]&&4.h[E==1?"3D":"1t"]()[0]!=4.c[C].t[0]&&!A(4.h[0],4.c[C].t[0])&&(4.8.2T=="3E-3J"?!A(4.g[0],4.c[C].t[0]):V)){4.2H=E==1?"2G":"3F";4.1B(D,4.c[C]);4.v("1T",D);3G}}4.2X(D);5(B.j.18){B.j.18.3I(4,D)}4.g.2Y("1b",[D,4.j()],4.8.1b);e L},1B:b(H,G,D,F){D?D[0].2O(4.h[0]):G.t[0].1e.3B(4.h[0],(4.2H=="2G"?G.t[0]:G.t[0].3t));4.1s=4.1s?++4.1s:1;9 E=4,C=4.1s;1h.3w(b(){5(C==E.1s){E.1I(!F)}},0);5(4.8.r){4.8.r.1o.X(4.g,4.h,4.r)}},3Y:b(E,D){5(B.j.18&&!4.8.2J){B.j.18.3O(4,E)}5(4.8.2b){9 C=4;9 F=C.h.a();5(C.r){C.r.2K({1a:"3R"},(w(4.8.2b,10)||2Q)-3Q)}B(4.l).2K({6:F.6-4.a.m.6-C.T.6+(4.u[0]==i.W?0:4.u[0].M),7:F.7-4.a.m.7-C.T.7+(4.u[0]==i.W?0:4.u[0].N)},w(4.8.2b,10)||2Q,b(){C.1F(E)})}Y{4.1F(E,D)}e L},1F:b(E,D){5(4.2d.1t!=4.h.1t().2a(".j-p-l")[0]||4.2d.m!=4.h.m()[0]){4.v("1o",E,O,D)}5(!A(4.g[0],4.h[0])){4.v("1A",E,O,D);P(9 C=4.d.z-1;C>=0;C--){5(A(4.d[C].g[0],4.h[0])){4.d[C].v("1o",E,4,D);4.d[C].v("3v",E,4,D)}}}P(9 C=4.d.z-1;C>=0;C--){4.d[C].v("3V",E,4,D);5(4.d[C].R.1d){4.d[C].v("2p",E,4);4.d[C].R.1d=0}}4.2N=L;5(4.32){4.v("1y",E,O,D);e L}B(4.h).f("2A","");5(4.r){4.r.1A()}4.l.1A();4.l=O;4.v("1y",E,O,D);e V}}));B.2r(B.j.p,{3k:"2F 2V",3s:{l:"2c",1p:"2e",3X:1,3H:0,1n:V,14:20,12:20,3C:":3U",c:"> *",19:3Z,2C:V,1M:"m"}});B.j.1g.1r("p","1i",{1v:b(E,D){9 C=B("W");5(C.f("1i")){D.8.1U=C.f("1i")}C.f("1i",D.8.1i)},1y:b(D,C){5(C.8.1U){B("W").f("1i",C.8.1U)}}});B.j.1g.1r("p","19",{1v:b(E,D){9 C=D.l;5(C.f("19")){D.8.1V=C.f("19")}C.f("19",D.8.19)},1y:b(D,C){5(C.8.1V){B(C.l).f("19",C.8.1V)}}});B.j.1g.1r("p","1a",{1v:b(E,D){9 C=D.l;5(C.f("1a")){D.8.1W=C.f("1a")}C.f("1a",D.8.1a)},1y:b(D,C){5(C.8.1W){B(C.l).f("1a",C.8.1W)}}});B.j.1g.1r("p","1n",{1v:b(E,D){9 F=D.8;9 C=B(4).1f("p");C.U=b(G){2W{5(/1L|1n/.1c(G.f("1K"))||(/1L|1n/).1c(G.f("1K-y"))){e G}G=G.m()}1Q(G[0].1e);e B(i)}(C.h);C.S=b(G){2W{5(/1L|1n/.1c(G.f("1K"))||(/1L|1n/).1c(G.f("1K-x"))){e G}G=G.m()}1Q(G[0].1e);e B(i)}(C.h);5(C.U[0]!=i&&C.U[0].1J!="1N"){C.1Y=C.U.a()}5(C.S[0]!=i&&C.S[0].1J!="1N"){C.23=C.S.a()}},1b:b(E,D){9 F=D.8;9 C=B(4).1f("p");5(C.U[0]!=i&&C.U[0].1J!="1N"){5((C.1Y.7+C.U[0].1X)-E.1k<F.14){C.U[0].N=C.U[0].N+F.12}5(E.1k-C.1Y.7<F.14){C.U[0].N=C.U[0].N-F.12}}Y{5(E.1k-B(i).N()<F.14){B(i).N(B(i).N()-F.12)}5(B(1h).o()-(E.1k-B(i).N())<F.14){B(i).N(B(i).N()+F.12)}}5(C.S[0]!=i&&C.S[0].1J!="1N"){5((C.23.6+C.S[0].24)-E.1l<F.14){C.S[0].M=C.S[0].M+F.12}5(E.1l-C.23.6<F.14){C.S[0].M=C.S[0].M-F.12}}Y{5(E.1l-B(i).M()<F.14){B(i).M(B(i).M()-F.12)}5(B(1h).n()-(E.1l-B(i).M())<F.14){B(i).M(B(i).M()+F.12)}}}});B.j.1g.1r("p","25",{1b:b(E,D){9 C=B(4).1f("p");5(D.8.25=="y"){C.Q.6=C.15.6}5(D.8.25=="x"){C.Q.7=C.15.7}}})})(3x);',62,248,'||||this|if|left|top|options|var|offset|function|items|containers|return|css|element|currentItem|document|ui|containment|helper|parent|width|height|sortable|click|placeholder|helperProportions|item|offsetParent|propagate|parseInt|||length||||||||||||false|scrollLeft|scrollTop|null|for|position|containerCache|overflowX|margins|overflowY|true|body|call|else|floating||grid|scrollSpeed|cursorAt|scrollSensitivity|originalPosition||positionAbs|ddmanager|zIndex|opacity|sort|test|over|parentNode|data|plugin|window|cursor|absolute|pageY|pageX|Math|scroll|update|tolerance|currentContainer|add|counter|prev|push|start|offsetParentBorders|each|stop|outerWidth|remove|rearrange|continue|target|isFunction|clear|undefined|outerHeight|refreshPositions|tagName|overflow|auto|appendTo|HTML|custom|convertPositionTo|while|generatePosition|connectWith|change|_cursor|_zIndex|_opacity|offsetHeight|overflowYOffset|right||createPlaceholder|addClass|overflowXOffset|offsetWidth|axis|disabled|borderLeftWidth|refreshItems|borderTopWidth|not|revert|clone|domPosition|guess|attr|id|round|removeData|expression|px|style|key|pointer|mouseDrag|out|scrollHeight|extend|max|bottom|marginRight|marginBottom|refreshContainers|intersectsWithEdge|instance|toleranceElement|visibility|refresh|dropOnEmpty|abs|compareDocumentPosition|serialize|down|direction|contains|dropBehaviour|animate|handle|browser|dragging|appendChild|parents|500|intersectsWith|div|type|relative|toArray|do|contactContainers|triggerHandler|String|unbind|constructor|cancelHelperRemoval|static|mouseDestroy|mouseCapture|10000|join|init|float|fixed|mouseInit|mouse|widget|safari|version|522|plugins|absolutePosition|forcePointerForContainers|getter|destroy|find|_|sender|attribute|match|removeClass|defaults|nextSibling|prepareOffsets|receive|setTimeout|jQuery|activate|current|andSelf|insertBefore|cancel|next|semi|up|break|delay|drag|dynamic|hidden|typeof|apply|both|drop|mouseStart|50|hide|marginLeft|marginTop|input|deactivate|scrollWidth|distance|mouseStop|1000'.split('|'),0,{}))
@@ -1,66 +0,0 @@
1
- function initOverLabels () {
2
- if (!document.getElementById) return;
3
-
4
- var labels, id, field;
5
-
6
- // Set focus and blur handlers to hide and show
7
- // LABELs with 'overlabel' class names.
8
- labels = document.getElementsByTagName('label');
9
- for (var i = 0; i < labels.length; i++) {
10
-
11
- if (labels[i].className == 'overlabel') {
12
-
13
- // Skip labels that do not have a named association
14
- // with another field.
15
- id = labels[i].htmlFor || labels[i].getAttribute('for');
16
- if (!id || !(field = document.getElementById(id))) {
17
- continue;
18
- }
19
-
20
- // Change the applied class to hover the label
21
- // over the form field.
22
- labels[i].className = 'overlabel-apply';
23
-
24
- // Hide any fields having an initial value.
25
- if (field.value !== '') {
26
- hideLabel(field.getAttribute('id'), true);
27
- }
28
-
29
- // Set handlers to show and hide labels.
30
- field.onfocus = function () {
31
- hideLabel(this.getAttribute('id'), true);
32
- };
33
- field.onblur = function () {
34
- if (this.value === '') {
35
- hideLabel(this.getAttribute('id'), false);
36
- }
37
- };
38
-
39
- // Handle clicks to LABEL elements (for Safari).
40
- labels[i].onclick = function () {
41
- var id, field;
42
- id = this.getAttribute('for');
43
- if (id && (field = document.getElementById(id))) {
44
- field.focus();
45
- }
46
- };
47
-
48
- }
49
- }
50
- };
51
-
52
- function hideLabel (field_id, hide) {
53
- var field_for;
54
- var labels = document.getElementsByTagName('label');
55
- for (var i = 0; i < labels.length; i++) {
56
- field_for = labels[i].htmlFor || labels[i].getAttribute('for');
57
- if (field_for == field_id) {
58
- labels[i].style.textIndent = (hide) ? '-10000px' : '0px';
59
- return true;
60
- }
61
- }
62
- }
63
-
64
- FastInit.addOnLoad(function(){
65
- initOverLabels();
66
- });
@@ -1,76 +0,0 @@
1
- /* default refinery css */
2
- body {
3
- background: #E1E1E1;
4
-
5
- }
6
- #page {
7
- background: white;
8
- padding: 20px;
9
- width: 1000px;
10
- margin: 0px auto;
11
- }
12
- #header {
13
- height: 71px;
14
- margin-bottom: 10px;
15
- }
16
- #header h1 {
17
- float: left;
18
- }
19
- #menu {
20
- list-style: none;
21
- float: right;
22
- margin-top: 20px;
23
- }
24
- #menu li {
25
- float: left;
26
- margin: 0px 9px;
27
- }
28
-
29
- #menu li a {
30
- font-size: 18px;
31
- }
32
-
33
- #footer {
34
- margin-top: 12px;
35
- font-size: 11px;
36
- }
37
-
38
- #body_content_left {
39
- float: left;
40
- width: 600px;
41
- }
42
- #body_content_right {
43
- float: right;
44
- margin: 0px 12px;
45
- width: 360px;
46
- }
47
-
48
- .inquiries form label {
49
- width: 150px;
50
- float: left;
51
- }
52
- .inquiries form input {
53
-
54
- }
55
- .inquiries form input, .inquiries form textarea {
56
-
57
- }
58
- .inquiries form textarea {
59
-
60
- }
61
- .inquiries form .actions {
62
- margin-left: 150px;
63
- }
64
-
65
- .inquiries form .actions input {
66
- }
67
-
68
- .inquiries .field {
69
- margin: 12px 0px;
70
- }
71
-
72
- .inquiries form {
73
- padding-top: 12px;
74
- }
75
-
76
- /* put your main css here */
@@ -1,27 +0,0 @@
1
- /* refinery default styles */
2
- #featured_image {
3
- width: 587px;
4
- height: 444px;
5
- background: #BCCED8;
6
- }
7
- #featured_item {
8
- margin-top: 48px;
9
- background: #E1E1E1;
10
- padding: 10px;
11
- }
12
- #featured_item h2 {
13
- margin: 11px 0px 27px 0px;
14
- }
15
- #featured_item_text {
16
- width: 180px;
17
- margin-right: 20px;
18
- float: left;
19
- }
20
- #featured_item_image {
21
- height: 134px;
22
- width: 134px;
23
- background: #BCCED8;
24
- float: left;
25
- }
26
-
27
- /* place styles relevant to only the homepage here */
@@ -1,21 +0,0 @@
1
- div.overlabel-field {
2
- position:relative;
3
- float:left;
4
- margin-right:3px;
5
- }
6
-
7
- label.overlabel {
8
- position:absolute;
9
- top:3px;
10
- left:5px;
11
- z-index:1;
12
- color:#999;
13
- }
14
-
15
- label.overlabel-apply {
16
- position:absolute;
17
- top:3px;
18
- left:5px;
19
- z-index:1;
20
- color:#999;
21
- }