Blame view

assets/plugins/jquery-steps/jquery.steps.js 54.1 KB
cf76164e6   Ting Chan   20190709
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
  /*! 
   * jQuery Steps v1.1.0 - 09/04/2014
   * Copyright (c) 2014 Rafael Staib (http://www.jquery-steps.com)
   * Licensed under MIT http://www.opensource.org/licenses/MIT
   */
  ;(function ($, undefined)
  {
  $.fn.extend({
      _aria: function (name, value)
      {
          return this.attr("aria-" + name, value);
      },
  
      _removeAria: function (name)
      {
          return this.removeAttr("aria-" + name);
      },
  
      _enableAria: function (enable)
      {
          return (enable == null || enable) ? 
              this.removeClass("disabled")._aria("disabled", "false") : 
              this.addClass("disabled")._aria("disabled", "true");
      },
  
      _showAria: function (show)
      {
          return (show == null || show) ? 
              this.show()._aria("hidden", "false") : 
              this.hide()._aria("hidden", "true");
      },
  
      _selectAria: function (select)
      {
          return (select == null || select) ? 
              this.addClass("current")._aria("selected", "true") : 
              this.removeClass("current")._aria("selected", "false");
      },
  
      _id: function (id)
      {
          return (id) ? this.attr("id", id) : this.attr("id");
      }
  });
  
  if (!String.prototype.format)
  {
      String.prototype.format = function()
      {
          var args = (arguments.length === 1 && $.isArray(arguments[0])) ? arguments[0] : arguments;
          var formattedString = this;
          for (var i = 0; i < args.length; i++)
          {
              var pattern = new RegExp("\\{" + i + "\\}", "gm");
              formattedString = formattedString.replace(pattern, args[i]);
          }
          return formattedString;
      };
  }
  
  /**
   * A global unique id count.
   *
   * @static
   * @private
   * @property _uniqueId
   * @type Integer
   **/
  var _uniqueId = 0;
  
  /**
   * The plugin prefix for cookies.
   *
   * @final
   * @private
   * @property _cookiePrefix
   * @type String
   **/
  var _cookiePrefix = "jQu3ry_5teps_St@te_";
  
  /**
   * Suffix for the unique tab id.
   *
   * @final
   * @private
   * @property _tabSuffix
   * @type String
   * @since 0.9.7
   **/
  var _tabSuffix = "-t-";
  
  /**
   * Suffix for the unique tabpanel id.
   *
   * @final
   * @private
   * @property _tabpanelSuffix
   * @type String
   * @since 0.9.7
   **/
  var _tabpanelSuffix = "-p-";
  
  /**
   * Suffix for the unique title id.
   *
   * @final
   * @private
   * @property _titleSuffix
   * @type String
   * @since 0.9.7
   **/
  var _titleSuffix = "-h-";
  
  /**
   * An error message for an "index out of range" error.
   *
   * @final
   * @private
   * @property _indexOutOfRangeErrorMessage
   * @type String
   **/
  var _indexOutOfRangeErrorMessage = "Index out of range.";
  
  /**
   * An error message for an "missing corresponding element" error.
   *
   * @final
   * @private
   * @property _missingCorrespondingElementErrorMessage
   * @type String
   **/
  var _missingCorrespondingElementErrorMessage = "One or more corresponding step {0} are missing.";
  
  /**
   * Adds a step to the cache.
   *
   * @static
   * @private
   * @method addStepToCache
   * @param wizard {Object} A jQuery wizard object
   * @param step {Object} The step object to add
   **/
  function addStepToCache(wizard, step)
  {
      getSteps(wizard).push(step);
  }
  
  function analyzeData(wizard, options, state)
  {
      var stepTitles = wizard.children(options.headerTag),
          stepContents = wizard.children(options.bodyTag);
  
      // Validate content
      if (stepTitles.length > stepContents.length)
      {
          throwError(_missingCorrespondingElementErrorMessage, "contents");
      }
      else if (stepTitles.length < stepContents.length)
      {
          throwError(_missingCorrespondingElementErrorMessage, "titles");
      }
          
      var startIndex = options.startIndex;
  
      state.stepCount = stepTitles.length;
  
      // Tries to load the saved state (step position)
      if (options.saveState && $.cookie)
      {
          var savedState = $.cookie(_cookiePrefix + getUniqueId(wizard));
          // Sets the saved position to the start index if not undefined or out of range 
          var savedIndex = parseInt(savedState, 0);
          if (!isNaN(savedIndex) && savedIndex < state.stepCount)
          {
              startIndex = savedIndex;
          }
      }
  
      state.currentIndex = startIndex;
  
      stepTitles.each(function (index)
      {
          var item = $(this), // item == header
              content = stepContents.eq(index),
              modeData = content.data("mode"),
              mode = (modeData == null) ? contentMode.html : getValidEnumValue(contentMode,
                  (/^\s*$/.test(modeData) || isNaN(modeData)) ? modeData : parseInt(modeData, 0)),
              contentUrl = (mode === contentMode.html || content.data("url") === undefined) ?
                  "" : content.data("url"),
              contentLoaded = (mode !== contentMode.html && content.data("loaded") === "1"),
              step = $.extend({}, stepModel, {
                  title: item.html(),
                  content: (mode === contentMode.html) ? content.html() : "",
                  contentUrl: contentUrl,
                  contentMode: mode,
                  contentLoaded: contentLoaded
              });
  
          addStepToCache(wizard, step);
      });
  }
  
  /**
   * Triggers the onCanceled event.
   *
   * @static
   * @private
   * @method cancel
   * @param wizard {Object} The jQuery wizard object
   **/
  function cancel(wizard)
  {
      wizard.triggerHandler("canceled");
  }
  
  function decreaseCurrentIndexBy(state, decreaseBy)
  {
      return state.currentIndex - decreaseBy;
  }
  
  /**
   * Removes the control functionality completely and transforms the current state to the initial HTML structure.
   *
   * @static
   * @private
   * @method destroy
   * @param wizard {Object} A jQuery wizard object
   **/
  function destroy(wizard, options)
  {
      var eventNamespace = getEventNamespace(wizard);
  
      // Remove virtual data objects from the wizard
      wizard.unbind(eventNamespace).removeData("uid").removeData("options")
          .removeData("state").removeData("steps").removeData("eventNamespace")
          .find(".actions a").unbind(eventNamespace);
  
      // Remove attributes and CSS classes from the wizard
      wizard.removeClass(options.clearFixCssClass + " vertical");
  
      var contents = wizard.find(".content > *");
  
      // Remove virtual data objects from panels and their titles
      contents.removeData("loaded").removeData("mode").removeData("url");
  
      // Remove attributes, CSS classes and reset inline styles on all panels and their titles
      contents.removeAttr("id").removeAttr("role").removeAttr("tabindex")
          .removeAttr("class").removeAttr("style")._removeAria("labelledby")
          ._removeAria("hidden");
  
      // Empty panels if the mode is set to 'async' or 'iframe'
      wizard.find(".content > [data-mode='async'],.content > [data-mode='iframe']").empty();
  
      var wizardSubstitute = $("<{0} class=\"{1}\"></{0}>".format(wizard.get(0).tagName, wizard.attr("class")));
  
      var wizardId = wizard._id();
      if (wizardId != null && wizardId !== "")
      {
          wizardSubstitute._id(wizardId);
      }
  
      wizardSubstitute.html(wizard.find(".content").html());
      wizard.after(wizardSubstitute);
      wizard.remove();
  
      return wizardSubstitute;
  }
  
  /**
   * Triggers the onFinishing and onFinished event.
   *
   * @static
   * @private
   * @method finishStep
   * @param wizard {Object} The jQuery wizard object
   * @param state {Object} The state container of the current wizard
   **/
  function finishStep(wizard, state)
  {
      var currentStep = wizard.find(".steps li").eq(state.currentIndex);
  
      if (wizard.triggerHandler("finishing", [state.currentIndex]))
      {
          currentStep.addClass("done").removeClass("error");
          wizard.triggerHandler("finished", [state.currentIndex]);
      }
      else
      {
          currentStep.addClass("error");
      }
  }
  
  /**
   * Gets or creates if not exist an unique event namespace for the given wizard instance.
   *
   * @static
   * @private
   * @method getEventNamespace
   * @param wizard {Object} A jQuery wizard object
   * @return {String} Returns the unique event namespace for the given wizard
   */
  function getEventNamespace(wizard)
  {
      var eventNamespace = wizard.data("eventNamespace");
  
      if (eventNamespace == null)
      {
          eventNamespace = "." + getUniqueId(wizard);
          wizard.data("eventNamespace", eventNamespace);
      }
  
      return eventNamespace;
  }
  
  function getStepAnchor(wizard, index)
  {
      var uniqueId = getUniqueId(wizard);
  
      return wizard.find("#" + uniqueId + _tabSuffix + index);
  }
  
  function getStepPanel(wizard, index)
  {
      var uniqueId = getUniqueId(wizard);
  
      return wizard.find("#" + uniqueId + _tabpanelSuffix + index);
  }
  
  function getStepTitle(wizard, index)
  {
      var uniqueId = getUniqueId(wizard);
  
      return wizard.find("#" + uniqueId + _titleSuffix + index);
  }
  
  function getOptions(wizard)
  {
      return wizard.data("options");
  }
  
  function getState(wizard)
  {
      return wizard.data("state");
  }
  
  function getSteps(wizard)
  {
      return wizard.data("steps");
  }
  
  /**
   * Gets a specific step object by index.
   *
   * @static
   * @private
   * @method getStep
   * @param index {Integer} An integer that belongs to the position of a step
   * @return {Object} A specific step object
   **/
  function getStep(wizard, index)
  {
      var steps = getSteps(wizard);
  
      if (index < 0 || index >= steps.length)
      {
          throwError(_indexOutOfRangeErrorMessage);
      }
  
      return steps[index];
  }
  
  /**
   * Gets or creates if not exist an unique id from the given wizard instance.
   *
   * @static
   * @private
   * @method getUniqueId
   * @param wizard {Object} A jQuery wizard object
   * @return {String} Returns the unique id for the given wizard
   */
  function getUniqueId(wizard)
  {
      var uniqueId = wizard.data("uid");
  
      if (uniqueId == null)
      {
          uniqueId = wizard._id();
          if (uniqueId == null)
          {
              uniqueId = "steps-uid-".concat(_uniqueId);
              wizard._id(uniqueId);
          }
  
          _uniqueId++;
          wizard.data("uid", uniqueId);
      }
  
      return uniqueId;
  }
  
  /**
   * Gets a valid enum value by checking a specific enum key or value.
   * 
   * @static
   * @private
   * @method getValidEnumValue
   * @param enumType {Object} Type of enum
   * @param keyOrValue {Object} Key as `String` or value as `Integer` to check for
   */
  function getValidEnumValue(enumType, keyOrValue)
  {
      validateArgument("enumType", enumType);
      validateArgument("keyOrValue", keyOrValue);
  
      // Is key
      if (typeof keyOrValue === "string")
      {
          var value = enumType[keyOrValue];
          if (value === undefined)
          {
              throwError("The enum key '{0}' does not exist.", keyOrValue);
          }
  
          return value;
      }
      // Is value
      else if (typeof keyOrValue === "number")
      {
          for (var key in enumType)
          {
              if (enumType[key] === keyOrValue)
              {
                  return keyOrValue;
              }
          }
  
          throwError("Invalid enum value '{0}'.", keyOrValue);
      }
      // Type is not supported
      else
      {
          throwError("Invalid key or value type.");
      }
  }
  
  /**
   * Routes to the next step.
   *
   * @static
   * @private
   * @method goToNextStep
   * @param wizard {Object} The jQuery wizard object
   * @param options {Object} Settings of the current wizard
   * @param state {Object} The state container of the current wizard
   * @return {Boolean} Indicates whether the action executed
   **/
  function goToNextStep(wizard, options, state)
  {
      return paginationClick(wizard, options, state, increaseCurrentIndexBy(state, 1));
  }
  
  /**
   * Routes to the previous step.
   *
   * @static
   * @private
   * @method goToPreviousStep
   * @param wizard {Object} The jQuery wizard object
   * @param options {Object} Settings of the current wizard
   * @param state {Object} The state container of the current wizard
   * @return {Boolean} Indicates whether the action executed
   **/
  function goToPreviousStep(wizard, options, state)
  {
      return paginationClick(wizard, options, state, decreaseCurrentIndexBy(state, 1));
  }
  
  /**
   * Routes to a specific step by a given index.
   *
   * @static
   * @private
   * @method goToStep
   * @param wizard {Object} The jQuery wizard object
   * @param options {Object} Settings of the current wizard
   * @param state {Object} The state container of the current wizard
   * @param index {Integer} The position (zero-based) to route to
   * @return {Boolean} Indicates whether the action succeeded or failed
   **/
  function goToStep(wizard, options, state, index)
  {
      if (index < 0 || index >= state.stepCount)
      {
          throwError(_indexOutOfRangeErrorMessage);
      }
  
      if (options.forceMoveForward && index < state.currentIndex)
      {
          return;
      }
  
      var oldIndex = state.currentIndex;
      if (wizard.triggerHandler("stepChanging", [state.currentIndex, index]))
      {
          // Save new state
          state.currentIndex = index;
          saveCurrentStateToCookie(wizard, options, state);
  
          // Change visualisation
          refreshStepNavigation(wizard, options, state, oldIndex);
          refreshPagination(wizard, options, state);
          loadAsyncContent(wizard, options, state);
          startTransitionEffect(wizard, options, state, index, oldIndex, function()
          {
              wizard.triggerHandler("stepChanged", [index, oldIndex]);
          });
      }
      else
      {
          wizard.find(".steps li").eq(oldIndex).addClass("error");
      }
  
      return true;
  }
  
  function increaseCurrentIndexBy(state, increaseBy)
  {
      return state.currentIndex + increaseBy;
  }
  
  /**
   * Initializes the component.
   *
   * @static
   * @private
   * @method initialize
   * @param options {Object} The component settings
   **/
  function initialize(options)
  {
      /*jshint -W040 */
      var opts = $.extend(true, {}, defaults, options);
  
      return this.each(function ()
      {
          var wizard = $(this);
          var state = {
              currentIndex: opts.startIndex,
              currentStep: null,
              stepCount: 0,
              transitionElement: null
          };
  
          // Create data container
          wizard.data("options", opts);
          wizard.data("state", state);
          wizard.data("steps", []);
  
          analyzeData(wizard, opts, state);
          render(wizard, opts, state);
          registerEvents(wizard, opts);
  
          // Trigger focus
          if (opts.autoFocus && _uniqueId === 0)
          {
              getStepAnchor(wizard, opts.startIndex).focus();
          }
  
          wizard.triggerHandler("init", [opts.startIndex]);
      });
  }
  
  /**
   * Inserts a new step to a specific position.
   *
   * @static
   * @private
   * @method insertStep
   * @param wizard {Object} The jQuery wizard object
   * @param options {Object} Settings of the current wizard
   * @param state {Object} The state container of the current wizard
   * @param index {Integer} The position (zero-based) to add
   * @param step {Object} The step object to add
   * @example
   *     $("#wizard").steps().insert(0, {
   *         title: "Title",
   *         content: "", // optional
   *         contentMode: "async", // optional
   *         contentUrl: "/Content/Step/1" // optional
   *     });
   * @chainable
   **/
  function insertStep(wizard, options, state, index, step)
  {
      if (index < 0 || index > state.stepCount)
      {
          throwError(_indexOutOfRangeErrorMessage);
      }
  
      // TODO: Validate step object
  
      // Change data
      step = $.extend({}, stepModel, step);
      insertStepToCache(wizard, index, step);
      if (state.currentIndex !== state.stepCount && state.currentIndex >= index)
      {
          state.currentIndex++;
          saveCurrentStateToCookie(wizard, options, state);
      }
      state.stepCount++;
  
      var contentContainer = wizard.find(".content"),
          header = $("<{0}>{1}</{0}>".format(options.headerTag, step.title)),
          body = $("<{0}></{0}>".format(options.bodyTag));
  
      if (step.contentMode == null || step.contentMode === contentMode.html)
      {
          body.html(step.content);
      }
  
      if (index === 0)
      {
          contentContainer.prepend(body).prepend(header);
      }
      else
      {
          getStepPanel(wizard, (index - 1)).after(body).after(header);
      }
  
      renderBody(wizard, state, body, index);
      renderTitle(wizard, options, state, header, index);
      refreshSteps(wizard, options, state, index);
      if (index === state.currentIndex)
      {
          refreshStepNavigation(wizard, options, state);
      }
      refreshPagination(wizard, options, state);
  
      return wizard;
  }
  
  /**
   * Inserts a step object to the cache at a specific position.
   *
   * @static
   * @private
   * @method insertStepToCache
   * @param wizard {Object} A jQuery wizard object
   * @param index {Integer} The position (zero-based) to add
   * @param step {Object} The step object to add
   **/
  function insertStepToCache(wizard, index, step)
  {
      getSteps(wizard).splice(index, 0, step);
  }
  
  /**
   * Handles the keyup DOM event for pagination.
   *
   * @static
   * @private
   * @event keyup
   * @param event {Object} An event object
   */
  function keyUpHandler(event)
  {
      var wizard = $(this),
          options = getOptions(wizard),
          state = getState(wizard);
  
      if (options.suppressPaginationOnFocus && wizard.find(":focus").is(":input"))
      {
          event.preventDefault();
          return false;
      }
  
      var keyCodes = { left: 37, right: 39 };
      if (event.keyCode === keyCodes.left)
      {
          event.preventDefault();
          goToPreviousStep(wizard, options, state);
      }
      else if (event.keyCode === keyCodes.right)
      {
          event.preventDefault();
          goToNextStep(wizard, options, state);
      }
  }
  
  /**
   * Loads and includes async content.
   *
   * @static
   * @private
   * @method loadAsyncContent
   * @param wizard {Object} A jQuery wizard object
   * @param options {Object} Settings of the current wizard
   * @param state {Object} The state container of the current wizard
   */
  function loadAsyncContent(wizard, options, state)
  {
      if (state.stepCount > 0)
      {
          var currentIndex = state.currentIndex,
              currentStep = getStep(wizard, currentIndex);
  
          if (!options.enableContentCache || !currentStep.contentLoaded)
          {
              switch (getValidEnumValue(contentMode, currentStep.contentMode))
              {
                  case contentMode.iframe:
                      wizard.find(".content > .body").eq(state.currentIndex).empty()
                          .html("<iframe src=\"" + currentStep.contentUrl + "\" frameborder=\"0\" scrolling=\"no\" />")
                          .data("loaded", "1");
                      break;
  
                  case contentMode.async:
                      var currentStepContent = getStepPanel(wizard, currentIndex)._aria("busy", "true")
                          .empty().append(renderTemplate(options.loadingTemplate, { text: options.labels.loading }));
  
                      $.ajax({ url: currentStep.contentUrl, cache: false }).done(function (data)
                      {
                          currentStepContent.empty().html(data)._aria("busy", "false").data("loaded", "1");
                          wizard.triggerHandler("contentLoaded", [currentIndex]);
                      });
                      break;
              }
          }
      }
  }
  
  /**
   * Fires the action next or previous click event.
   *
   * @static
   * @private
   * @method paginationClick
   * @param wizard {Object} The jQuery wizard object
   * @param options {Object} Settings of the current wizard
   * @param state {Object} The state container of the current wizard
   * @param index {Integer} The position (zero-based) to route to
   * @return {Boolean} Indicates whether the event fired successfully or not
   **/
  function paginationClick(wizard, options, state, index)
  {
      var oldIndex = state.currentIndex;
  
      if (index >= 0 && index < state.stepCount && !(options.forceMoveForward && index < state.currentIndex))
      {
          var anchor = getStepAnchor(wizard, index),
              parent = anchor.parent(),
              isDisabled = parent.hasClass("disabled");
  
          // Enable the step to make the anchor clickable!
          parent._enableAria();
          anchor.click();
  
          // An error occured
          if (oldIndex === state.currentIndex && isDisabled)
          {
              // Disable the step again if current index has not changed; prevents click action.
              parent._enableAria(false);
              return false;
          }
  
          return true;
      }
  
      return false;
  }
  
  /**
   * Fires when a pagination click happens.
   *
   * @static
   * @private
   * @event click
   * @param event {Object} An event object
   */
  function paginationClickHandler(event)
  {
      event.preventDefault();
  
      var anchor = $(this),
          wizard = anchor.parent().parent().parent().parent(),
          options = getOptions(wizard),
          state = getState(wizard),
          href = anchor.attr("href");
  
      switch (href.substring(href.lastIndexOf("#") + 1))
      {
          case "cancel":
              cancel(wizard);
              break;
  
          case "finish":
              finishStep(wizard, state);
              break;
  
          case "next":
              goToNextStep(wizard, options, state);
              break;
  
          case "previous":
              goToPreviousStep(wizard, options, state);
              break;
      }
  }
  
  /**
   * Refreshs the visualization state for the entire pagination.
   *
   * @static
   * @private
   * @method refreshPagination
   * @param wizard {Object} A jQuery wizard object
   * @param options {Object} Settings of the current wizard
   * @param state {Object} The state container of the current wizard
   */
  function refreshPagination(wizard, options, state)
  {
      if (options.enablePagination)
      {
          var finish = wizard.find(".actions a[href$='#finish']").parent(),
              next = wizard.find(".actions a[href$='#next']").parent();
  
          if (!options.forceMoveForward)
          {
              var previous = wizard.find(".actions a[href$='#previous']").parent();
              previous._enableAria(state.currentIndex > 0);
          }
  
          if (options.enableFinishButton && options.showFinishButtonAlways)
          {
              finish._enableAria(state.stepCount > 0);
              next._enableAria(state.stepCount > 1 && state.stepCount > (state.currentIndex + 1));
          }
          else
          {
              finish._showAria(options.enableFinishButton && state.stepCount === (state.currentIndex + 1));
              next._showAria(state.stepCount === 0 || state.stepCount > (state.currentIndex + 1)).
                  _enableAria(state.stepCount > (state.currentIndex + 1) || !options.enableFinishButton);
          }
      }
  }
  
  /**
   * Refreshs the visualization state for the step navigation (tabs).
   *
   * @static
   * @private
   * @method refreshStepNavigation
   * @param wizard {Object} A jQuery wizard object
   * @param options {Object} Settings of the current wizard
   * @param state {Object} The state container of the current wizard
   * @param [oldIndex] {Integer} The index of the prior step
   */
  function refreshStepNavigation(wizard, options, state, oldIndex)
  {
      var currentOrNewStepAnchor = getStepAnchor(wizard, state.currentIndex),
          currentInfo = $("<span class=\"current-info audible\">" + options.labels.current + " </span>"),
          stepTitles = wizard.find(".content > .title");
  
      if (oldIndex != null)
      {
          var oldStepAnchor = getStepAnchor(wizard, oldIndex);
          oldStepAnchor.parent().addClass("done").removeClass("error")._selectAria(false);
          stepTitles.eq(oldIndex).removeClass("current").next(".body").removeClass("current");
          currentInfo = oldStepAnchor.find(".current-info");
          currentOrNewStepAnchor.focus();
      }
  
      currentOrNewStepAnchor.prepend(currentInfo).parent()._selectAria().removeClass("done")._enableAria();
      stepTitles.eq(state.currentIndex).addClass("current").next(".body").addClass("current");
  }
  
  /**
   * Refreshes step buttons and their related titles beyond a certain position.
   *
   * @static
   * @private
   * @method refreshSteps
   * @param wizard {Object} A jQuery wizard object
   * @param options {Object} Settings of the current wizard
   * @param state {Object} The state container of the current wizard
   * @param index {Integer} The start point for refreshing ids
   */
  function refreshSteps(wizard, options, state, index)
  {
      var uniqueId = getUniqueId(wizard);
  
      for (var i = index; i < state.stepCount; i++)
      {
          var uniqueStepId = uniqueId + _tabSuffix + i,
              uniqueBodyId = uniqueId + _tabpanelSuffix + i,
              uniqueHeaderId = uniqueId + _titleSuffix + i,
              title = wizard.find(".title").eq(i)._id(uniqueHeaderId);
  
          wizard.find(".steps a").eq(i)._id(uniqueStepId)
              ._aria("controls", uniqueBodyId).attr("href", "#" + uniqueHeaderId)
              .html(renderTemplate(options.titleTemplate, { index: i + 1, title: title.html() }));
          wizard.find(".body").eq(i)._id(uniqueBodyId)
              ._aria("labelledby", uniqueHeaderId);
      }
  }
  
  function registerEvents(wizard, options)
  {
      var eventNamespace = getEventNamespace(wizard);
  
      wizard.bind("canceled" + eventNamespace, options.onCanceled);
      wizard.bind("contentLoaded" + eventNamespace, options.onContentLoaded);
      wizard.bind("finishing" + eventNamespace, options.onFinishing);
      wizard.bind("finished" + eventNamespace, options.onFinished);
      wizard.bind("init" + eventNamespace, options.onInit);
      wizard.bind("stepChanging" + eventNamespace, options.onStepChanging);
      wizard.bind("stepChanged" + eventNamespace, options.onStepChanged);
  
      if (options.enableKeyNavigation)
      {
          wizard.bind("keyup" + eventNamespace, keyUpHandler);
      }
  
      wizard.find(".actions a").bind("click" + eventNamespace, paginationClickHandler);
  }
  
  /**
   * Removes a specific step by an given index.
   *
   * @static
   * @private
   * @method removeStep
   * @param wizard {Object} A jQuery wizard object
   * @param options {Object} Settings of the current wizard
   * @param state {Object} The state container of the current wizard
   * @param index {Integer} The position (zero-based) of the step to remove
   * @return Indecates whether the item is removed.
   **/
  function removeStep(wizard, options, state, index)
  {
      // Index out of range and try deleting current item will return false.
      if (index < 0 || index >= state.stepCount || state.currentIndex === index)
      {
          return false;
      }
  
      // Change data
      removeStepFromCache(wizard, index);
      if (state.currentIndex > index)
      {
          state.currentIndex--;
          saveCurrentStateToCookie(wizard, options, state);
      }
      state.stepCount--;
  
      getStepTitle(wizard, index).remove();
      getStepPanel(wizard, index).remove();
      getStepAnchor(wizard, index).parent().remove();
  
      // Set the "first" class to the new first step button 
      if (index === 0)
      {
          wizard.find(".steps li").first().addClass("first");
      }
  
      // Set the "last" class to the new last step button 
      if (index === state.stepCount)
      {
          wizard.find(".steps li").eq(index).addClass("last");
      }
  
      refreshSteps(wizard, options, state, index);
      refreshPagination(wizard, options, state);
  
      return true;
  }
  
  function removeStepFromCache(wizard, index)
  {
      getSteps(wizard).splice(index, 1);
  }
  
  /**
   * Transforms the base html structure to a more sensible html structure.
   *
   * @static
   * @private
   * @method render
   * @param wizard {Object} A jQuery wizard object
   * @param options {Object} Settings of the current wizard
   * @param state {Object} The state container of the current wizard
   **/
  function render(wizard, options, state)
  {
      // Create a content wrapper and copy HTML from the intial wizard structure
      var wrapperTemplate = "<{0} class=\"{1}\">{2}</{0}>",
          orientation = getValidEnumValue(stepsOrientation, options.stepsOrientation),
          verticalCssClass = (orientation === stepsOrientation.vertical) ? " vertical" : "",
          contentWrapper = $(wrapperTemplate.format(options.contentContainerTag, "content " + options.clearFixCssClass, wizard.html())),
          stepsWrapper = $(wrapperTemplate.format(options.stepsContainerTag, "steps " + options.clearFixCssClass, "<ul role=\"tablist\"></ul>")),
          stepTitles = contentWrapper.children(options.headerTag),
          stepContents = contentWrapper.children(options.bodyTag);
  
      // Transform the wizard wrapper and remove the inner HTML
      wizard.attr("role", "application").empty().append(stepsWrapper).append(contentWrapper)
          .addClass(options.cssClass + " " + options.clearFixCssClass + verticalCssClass);
  
      // Add WIA-ARIA support
      stepContents.each(function (index)
      {
          renderBody(wizard, state, $(this), index);
      });
  
      stepTitles.each(function (index)
      {
          renderTitle(wizard, options, state, $(this), index);
      });
  
      refreshStepNavigation(wizard, options, state);
      renderPagination(wizard, options, state);
  }
  
  /**
   * Transforms the body to a proper tabpanel.
   *
   * @static
   * @private
   * @method renderBody
   * @param wizard {Object} A jQuery wizard object
   * @param body {Object} A jQuery body object
   * @param index {Integer} The position of the body
   */
  function renderBody(wizard, state, body, index)
  {
      var uniqueId = getUniqueId(wizard),
          uniqueBodyId = uniqueId + _tabpanelSuffix + index,
          uniqueHeaderId = uniqueId + _titleSuffix + index;
  
      body._id(uniqueBodyId).attr("role", "tabpanel")._aria("labelledby", uniqueHeaderId)
          .addClass("body")._showAria(state.currentIndex === index);
  }
  
  /**
   * Renders a pagination if enabled.
   *
   * @static
   * @private
   * @method renderPagination
   * @param wizard {Object} A jQuery wizard object
   * @param options {Object} Settings of the current wizard
   * @param state {Object} The state container of the current wizard
   */
  function renderPagination(wizard, options, state)
  {
      if (options.enablePagination)
      {
          var pagination = "<{0} class=\"actions {1}\"><ul role=\"menu\" aria-label=\"{2}\">{3}</ul></{0}>",
              buttonTemplate = "<li><a href=\"#{0}\" role=\"menuitem\">{1}</a></li>",
              buttons = "";
  
          if (!options.forceMoveForward)
          {
              buttons += buttonTemplate.format("previous", options.labels.previous);
          }
  
          buttons += buttonTemplate.format("next", options.labels.next);
  
          if (options.enableFinishButton)
          {
              buttons += buttonTemplate.format("finish", options.labels.finish);
          }
  
          if (options.enableCancelButton)
          {
              buttons += buttonTemplate.format("cancel", options.labels.cancel);
          }
  
          wizard.append(pagination.format(options.actionContainerTag, options.clearFixCssClass,
              options.labels.pagination, buttons));
  
          refreshPagination(wizard, options, state);
          loadAsyncContent(wizard, options, state);
      }
  }
  
  /**
   * Renders a template and replaces all placeholder.
   *
   * @static
   * @private
   * @method renderTemplate
   * @param template {String} A template
   * @param substitutes {Object} A list of substitute
   * @return {String} The rendered template
   */
  function renderTemplate(template, substitutes)
  {
      var matches = template.match(/#([a-z]*)#/gi);
  
      for (var i = 0; i < matches.length; i++)
      {
          var match = matches[i], 
              key = match.substring(1, match.length - 1);
  
          if (substitutes[key] === undefined)
          {
              throwError("The key '{0}' does not exist in the substitute collection!", key);
          }
  
          template = template.replace(match, substitutes[key]);
      }
  
      return template;
  }
  
  /**
   * Transforms the title to a step item button.
   *
   * @static
   * @private
   * @method renderTitle
   * @param wizard {Object} A jQuery wizard object
   * @param options {Object} Settings of the current wizard
   * @param state {Object} The state container of the current wizard
   * @param header {Object} A jQuery header object
   * @param index {Integer} The position of the header
   */
  function renderTitle(wizard, options, state, header, index)
  {
      var uniqueId = getUniqueId(wizard),
          uniqueStepId = uniqueId + _tabSuffix + index,
          uniqueBodyId = uniqueId + _tabpanelSuffix + index,
          uniqueHeaderId = uniqueId + _titleSuffix + index,
          stepCollection = wizard.find(".steps > ul"),
          title = renderTemplate(options.titleTemplate, {
              index: index + 1,
              title: header.html()
          }),
          stepItem = $("<li role=\"tab\"><a id=\"" + uniqueStepId + "\" href=\"#" + uniqueHeaderId + 
              "\" aria-controls=\"" + uniqueBodyId + "\">" + title + "</a></li>");
          
      stepItem._enableAria(options.enableAllSteps || state.currentIndex > index);
  
      if (state.currentIndex > index)
      {
          stepItem.addClass("done");
      }
  
      header._id(uniqueHeaderId).attr("tabindex", "-1").addClass("title");
  
      if (index === 0)
      {
          stepCollection.prepend(stepItem);
      }
      else
      {
          stepCollection.find("li").eq(index - 1).after(stepItem);
      }
  
      // Set the "first" class to the new first step button
      if (index === 0)
      {
          stepCollection.find("li").removeClass("first").eq(index).addClass("first");
      }
  
      // Set the "last" class to the new last step button
      if (index === (state.stepCount - 1))
      {
          stepCollection.find("li").removeClass("last").eq(index).addClass("last");
      }
  
      // Register click event
      stepItem.children("a").bind("click" + getEventNamespace(wizard), stepClickHandler);
  }
  
  /**
   * Saves the current state to a cookie.
   *
   * @static
   * @private
   * @method saveCurrentStateToCookie
   * @param wizard {Object} A jQuery wizard object
   * @param options {Object} Settings of the current wizard
   * @param state {Object} The state container of the current wizard
   */
  function saveCurrentStateToCookie(wizard, options, state)
  {
      if (options.saveState && $.cookie)
      {
          $.cookie(_cookiePrefix + getUniqueId(wizard), state.currentIndex);
      }
  }
  
  function startTransitionEffect(wizard, options, state, index, oldIndex, doneCallback)
  {
      var stepContents = wizard.find(".content > .body"),
          effect = getValidEnumValue(transitionEffect, options.transitionEffect),
          effectSpeed = options.transitionEffectSpeed,
          newStep = stepContents.eq(index),
          currentStep = stepContents.eq(oldIndex);
  
      switch (effect)
      {
          case transitionEffect.fade:
          case transitionEffect.slide:
              var hide = (effect === transitionEffect.fade) ? "fadeOut" : "slideUp",
                  show = (effect === transitionEffect.fade) ? "fadeIn" : "slideDown";
  
              state.transitionElement = newStep;
              currentStep[hide](effectSpeed, function ()
              {
                  var wizard = $(this)._showAria(false).parent().parent(),
                      state = getState(wizard);
  
                  if (state.transitionElement)
                  {
                      state.transitionElement[show](effectSpeed, function ()
                      {
                          $(this)._showAria();
                      }).promise().done(doneCallback);
                      state.transitionElement = null;
                  }
              });
              break;
  
          case transitionEffect.slideLeft:
              var outerWidth = currentStep.outerWidth(true),
                  posFadeOut = (index > oldIndex) ? -(outerWidth) : outerWidth,
                  posFadeIn = (index > oldIndex) ? outerWidth : -(outerWidth);
  
              $.when(currentStep.animate({ left: posFadeOut }, effectSpeed, 
                      function () { $(this)._showAria(false); }),
                  newStep.css("left", posFadeIn + "px")._showAria()
                      .animate({ left: 0 }, effectSpeed)).done(doneCallback);
              break;
  
          default:
              $.when(currentStep._showAria(false), newStep._showAria())
                  .done(doneCallback);
              break;
      }
  }
  
  /**
   * Fires when a step click happens.
   *
   * @static
   * @private
   * @event click
   * @param event {Object} An event object
   */
  function stepClickHandler(event)
  {
      event.preventDefault();
  
      var anchor = $(this),
          wizard = anchor.parent().parent().parent().parent(),
          options = getOptions(wizard),
          state = getState(wizard),
          oldIndex = state.currentIndex;
  
      if (anchor.parent().is(":not(.disabled):not(.current)"))
      {
          var href = anchor.attr("href"),
              position = parseInt(href.substring(href.lastIndexOf("-") + 1), 0);
  
          goToStep(wizard, options, state, position);
      }
  
      // If nothing has changed
      if (oldIndex === state.currentIndex)
      {
          getStepAnchor(wizard, oldIndex).focus();
          return false;
      }
  }
  
  function throwError(message)
  {
      if (arguments.length > 1)
      {
          message = message.format(Array.prototype.slice.call(arguments, 1));
      }
  
      throw new Error(message);
  }
  
  /**
   * Checks an argument for null or undefined and throws an error if one check applies.
   *
   * @static
   * @private
   * @method validateArgument
   * @param argumentName {String} The name of the given argument
   * @param argumentValue {Object} The argument itself
   */
  function validateArgument(argumentName, argumentValue)
  {
      if (argumentValue == null)
      {
          throwError("The argument '{0}' is null or undefined.", argumentName);
      }
  }
  
  /**
   * Represents a jQuery wizard plugin.
   *
   * @class steps
   * @constructor
   * @param [method={}] The name of the method as `String` or an JSON object for initialization
   * @param [params=]* {Array} Additional arguments for a method call
   * @chainable
   **/
  $.fn.steps = function (method)
  {
      if ($.fn.steps[method])
      {
          return $.fn.steps[method].apply(this, Array.prototype.slice.call(arguments, 1));
      }
      else if (typeof method === "object" || !method)
      {
          return initialize.apply(this, arguments);
      }
      else
      {
          $.error("Method " + method + " does not exist on jQuery.steps");
      }
  };
  
  /**
   * Adds a new step.
   *
   * @method add
   * @param step {Object} The step object to add
   * @chainable
   **/
  $.fn.steps.add = function (step)
  {
      var state = getState(this);
      return insertStep(this, getOptions(this), state, state.stepCount, step);
  };
  
  /**
   * Removes the control functionality completely and transforms the current state to the initial HTML structure.
   *
   * @method destroy
   * @chainable
   **/
  $.fn.steps.destroy = function ()
  {
      return destroy(this, getOptions(this));
  };
  
  /**
   * Triggers the onFinishing and onFinished event.
   *
   * @method finish
   **/
  $.fn.steps.finish = function ()
  {
      finishStep(this, getState(this));
  };
  
  /**
   * Gets the current step index.
   *
   * @method getCurrentIndex
   * @return {Integer} The actual step index (zero-based)
   * @for steps
   **/
  $.fn.steps.getCurrentIndex = function ()
  {
      return getState(this).currentIndex;
  };
  
  /**
   * Gets the current step object.
   *
   * @method getCurrentStep
   * @return {Object} The actual step object
   **/
  $.fn.steps.getCurrentStep = function ()
  {
      return getStep(this, getState(this).currentIndex);
  };
  
  /**
   * Gets a specific step object by index.
   *
   * @method getStep
   * @param index {Integer} An integer that belongs to the position of a step
   * @return {Object} A specific step object
   **/
  $.fn.steps.getStep = function (index)
  {
      return getStep(this, index);
  };
  
  /**
   * Inserts a new step to a specific position.
   *
   * @method insert
   * @param index {Integer} The position (zero-based) to add
   * @param step {Object} The step object to add
   * @example
   *     $("#wizard").steps().insert(0, {
   *         title: "Title",
   *         content: "", // optional
   *         contentMode: "async", // optional
   *         contentUrl: "/Content/Step/1" // optional
   *     });
   * @chainable
   **/
  $.fn.steps.insert = function (index, step)
  {
      return insertStep(this, getOptions(this), getState(this), index, step);
  };
  
  /**
   * Routes to the next step.
   *
   * @method next
   * @return {Boolean} Indicates whether the action executed
   **/
  $.fn.steps.next = function ()
  {
      return goToNextStep(this, getOptions(this), getState(this));
  };
  
  /**
   * Routes to the previous step.
   *
   * @method previous
   * @return {Boolean} Indicates whether the action executed
   **/
  $.fn.steps.previous = function ()
  {
      return goToPreviousStep(this, getOptions(this), getState(this));
  };
  
  /**
   * Removes a specific step by an given index.
   *
   * @method remove
   * @param index {Integer} The position (zero-based) of the step to remove
   * @return Indecates whether the item is removed.
   **/
  $.fn.steps.remove = function (index)
  {
      return removeStep(this, getOptions(this), getState(this), index);
  };
  
  /**
   * Sets a specific step object by index.
   *
   * @method setStep
   * @param index {Integer} An integer that belongs to the position of a step
   * @param step {Object} The step object to change
   **/
  $.fn.steps.setStep = function (index, step)
  {
      throw new Error("Not yet implemented!");
  };
  
  /**
   * Skips an certain amount of steps.
   *
   * @method skip
   * @param count {Integer} The amount of steps that should be skipped
   * @return {Boolean} Indicates whether the action executed
   **/
  $.fn.steps.skip = function (count)
  {
      throw new Error("Not yet implemented!");
  };
  
  /**
   * An enum represents the different content types of a step and their loading mechanisms.
   *
   * @class contentMode
   * @for steps
   **/
  var contentMode = $.fn.steps.contentMode = {
      /**
       * HTML embedded content
       *
       * @readOnly
       * @property html
       * @type Integer
       * @for contentMode
       **/
      html: 0,
  
      /**
       * IFrame embedded content
       *
       * @readOnly
       * @property iframe
       * @type Integer
       * @for contentMode
       **/
      iframe: 1,
  
      /**
       * Async embedded content
       *
       * @readOnly
       * @property async
       * @type Integer
       * @for contentMode
       **/
      async: 2
  };
  
  /**
   * An enum represents the orientation of the steps navigation.
   *
   * @class stepsOrientation
   * @for steps
   **/
  var stepsOrientation = $.fn.steps.stepsOrientation = {
      /**
       * Horizontal orientation
       *
       * @readOnly
       * @property horizontal
       * @type Integer
       * @for stepsOrientation
       **/
      horizontal: 0,
  
      /**
       * Vertical orientation
       *
       * @readOnly
       * @property vertical
       * @type Integer
       * @for stepsOrientation
       **/
      vertical: 1
  };
  
  /**
   * An enum that represents the various transition animations.
   *
   * @class transitionEffect
   * @for steps
   **/
  var transitionEffect = $.fn.steps.transitionEffect = {
      /**
       * No transition animation
       *
       * @readOnly
       * @property none
       * @type Integer
       * @for transitionEffect
       **/
      none: 0,
  
      /**
       * Fade in transition
       *
       * @readOnly
       * @property fade
       * @type Integer
       * @for transitionEffect
       **/
      fade: 1,
  
      /**
       * Slide up transition
       *
       * @readOnly
       * @property slide
       * @type Integer
       * @for transitionEffect
       **/
      slide: 2,
  
      /**
       * Slide left transition
       *
       * @readOnly
       * @property slideLeft
       * @type Integer
       * @for transitionEffect
       **/
      slideLeft: 3
  };
  
  var stepModel = $.fn.steps.stepModel = {
      title: "",
      content: "",
      contentUrl: "",
      contentMode: contentMode.html,
      contentLoaded: false
  };
  
  /**
   * An object that represents the default settings.
   * There are two possibities to override the sub-properties.
   * Either by doing it generally (global) or on initialization.
   *
   * @static
   * @class defaults
   * @for steps
   * @example
   *   // Global approach
   *   $.steps.defaults.headerTag = "h3";
   * @example
   *   // Initialization approach
   *   $("#wizard").steps({ headerTag: "h3" });
   **/
  var defaults = $.fn.steps.defaults = {
      /**
       * The header tag is used to find the step button text within the declared wizard area.
       *
       * @property headerTag
       * @type String
       * @default "h1"
       * @for defaults
       **/
      headerTag: "h1",
  
      /**
       * The body tag is used to find the step content within the declared wizard area.
       *
       * @property bodyTag
       * @type String
       * @default "div"
       * @for defaults
       **/
      bodyTag: "div",
  
      /**
       * The content container tag which will be used to wrap all step contents.
       *
       * @property contentContainerTag
       * @type String
       * @default "div"
       * @for defaults
       **/
      contentContainerTag: "div",
  
      /**
       * The action container tag which will be used to wrap the pagination navigation.
       *
       * @property actionContainerTag
       * @type String
       * @default "div"
       * @for defaults
       **/
      actionContainerTag: "div",
  
      /**
       * The steps container tag which will be used to wrap the steps navigation.
       *
       * @property stepsContainerTag
       * @type String
       * @default "div"
       * @for defaults
       **/
      stepsContainerTag: "div",
  
      /**
       * The css class which will be added to the outer component wrapper.
       *
       * @property cssClass
       * @type String
       * @default "wizard"
       * @for defaults
       * @example
       *     <div class="wizard">
       *         ...
       *     </div>
       **/
      cssClass: "wizard",
  
      /**
       * The css class which will be used for floating scenarios.
       *
       * @property clearFixCssClass
       * @type String
       * @default "clearfix"
       * @for defaults
       **/
      clearFixCssClass: "clearfix",
  
      /**
       * Determines whether the steps are vertically or horizontally oriented.
       *
       * @property stepsOrientation
       * @type stepsOrientation
       * @default horizontal
       * @for defaults
       * @since 1.0.0
       **/
      stepsOrientation: stepsOrientation.horizontal,
  
      /*
       * Tempplates
       */
  
      /**
       * The title template which will be used to create a step button.
       *
       * @property titleTemplate
       * @type String
       * @default "<span class=\"number\">#index#.</span> #title#"
       * @for defaults
       **/
      titleTemplate: "<span class=\"number\">#index#.</span> #title#",
  
      /**
       * The loading template which will be used to create the loading animation.
       *
       * @property loadingTemplate
       * @type String
       * @default "<span class=\"spinner\"></span> #text#"
       * @for defaults
       **/
      loadingTemplate: "<span class=\"spinner\"></span> #text#",
  
      /*
       * Behaviour
       */
  
      /**
       * Sets the focus to the first wizard instance in order to enable the key navigation from the begining if `true`. 
       *
       * @property autoFocus
       * @type Boolean
       * @default false
       * @for defaults
       * @since 0.9.4
       **/
      autoFocus: false,
  
      /**
       * Enables all steps from the begining if `true` (all steps are clickable).
       *
       * @property enableAllSteps
       * @type Boolean
       * @default false
       * @for defaults
       **/
      enableAllSteps: false,
  
      /**
       * Enables keyboard navigation if `true` (arrow left and arrow right).
       *
       * @property enableKeyNavigation
       * @type Boolean
       * @default true
       * @for defaults
       **/
      enableKeyNavigation: true,
  
      /**
       * Enables pagination if `true`.
       *
       * @property enablePagination
       * @type Boolean
       * @default true
       * @for defaults
       **/
      enablePagination: true,
  
      /**
       * Suppresses pagination if a form field is focused.
       *
       * @property suppressPaginationOnFocus
       * @type Boolean
       * @default true
       * @for defaults
       **/
      suppressPaginationOnFocus: true,
  
      /**
       * Enables cache for async loaded or iframe embedded content.
       *
       * @property enableContentCache
       * @type Boolean
       * @default true
       * @for defaults
       **/
      enableContentCache: true,
  
      /**
       * Shows the cancel button if enabled.
       *
       * @property enableCancelButton
       * @type Boolean
       * @default false
       * @for defaults
       **/
      enableCancelButton: false,
  
      /**
       * Shows the finish button if enabled.
       *
       * @property enableFinishButton
       * @type Boolean
       * @default true
       * @for defaults
       **/
      enableFinishButton: true,
  
      /**
       * Not yet implemented.
       *
       * @property preloadContent
       * @type Boolean
       * @default false
       * @for defaults
       **/
      preloadContent: false,
  
      /**
       * Shows the finish button always (on each step; right beside the next button) if `true`. 
       * Otherwise the next button will be replaced by the finish button if the last step becomes active.
       *
       * @property showFinishButtonAlways
       * @type Boolean
       * @default false
       * @for defaults
       **/
      showFinishButtonAlways: false,
  
      /**
       * Prevents jumping to a previous step.
       *
       * @property forceMoveForward
       * @type Boolean
       * @default false
       * @for defaults
       **/
      forceMoveForward: false,
  
      /**
       * Saves the current state (step position) to a cookie.
       * By coming next time the last active step becomes activated.
       *
       * @property saveState
       * @type Boolean
       * @default false
       * @for defaults
       **/
      saveState: false,
  
      /**
       * The position to start on (zero-based).
       *
       * @property startIndex
       * @type Integer
       * @default 0
       * @for defaults
       **/
      startIndex: 0,
  
      /*
       * Animation Effect Configuration
       */
  
      /**
       * The animation effect which will be used for step transitions.
       *
       * @property transitionEffect
       * @type transitionEffect
       * @default none
       * @for defaults
       **/
      transitionEffect: transitionEffect.none,
  
      /**
       * Animation speed for step transitions (in milliseconds).
       *
       * @property transitionEffectSpeed
       * @type Integer
       * @default 200
       * @for defaults
       **/
      transitionEffectSpeed: 200,
  
      /*
       * Events
       */
  
      /**
       * Fires before the step changes and can be used to prevent step changing by returning `false`. 
       * Very useful for form validation. 
       *
       * @property onStepChanging
       * @type Event
       * @default function (event, currentIndex, newIndex) { return true; }
       * @for defaults
       **/
      onStepChanging: function (event, currentIndex, newIndex) { return true; },
  
      /**
       * Fires after the step has change. 
       *
       * @property onStepChanged
       * @type Event
       * @default function (event, currentIndex, priorIndex) { }
       * @for defaults
       **/
      onStepChanged: function (event, currentIndex, priorIndex) { },
  
      /**
       * Fires after cancelation. 
       *
       * @property onCanceled
       * @type Event
       * @default function (event) { }
       * @for defaults
       **/
      onCanceled: function (event) { },
  
      /**
       * Fires before finishing and can be used to prevent completion by returning `false`. 
       * Very useful for form validation. 
       *
       * @property onFinishing
       * @type Event
       * @default function (event, currentIndex) { return true; }
       * @for defaults
       **/
      onFinishing: function (event, currentIndex) { return true; },
  
      /**
       * Fires after completion. 
       *
       * @property onFinished
       * @type Event
       * @default function (event, currentIndex) { }
       * @for defaults
       **/
      onFinished: function (event, currentIndex) { },
  
      /**
       * Fires after async content is loaded. 
       *
       * @property onContentLoaded
       * @type Event
       * @default function (event, index) { }
       * @for defaults
       **/
      onContentLoaded: function (event, currentIndex) { },
  
      /**
       * Fires when the wizard is initialized. 
       *
       * @property onInit
       * @type Event
       * @default function (event) { }
       * @for defaults
       **/
      onInit: function (event, currentIndex) { },
  
      /**
       * Contains all labels. 
       *
       * @property labels
       * @type Object
       * @for defaults
       **/
      labels: {
          /**
           * Label for the cancel button.
           *
           * @property cancel
           * @type String
           * @default "Cancel"
           * @for defaults
           **/
          cancel: "Cancel",
  
          /**
           * This label is important for accessability reasons.
           * Indicates which step is activated.
           *
           * @property current
           * @type String
           * @default "current step:"
           * @for defaults
           **/
          current: "current step:",
  
          /**
           * This label is important for accessability reasons and describes the kind of navigation.
           *
           * @property pagination
           * @type String
           * @default "Pagination"
           * @for defaults
           * @since 0.9.7
           **/
          pagination: "Pagination",
  
          /**
           * Label for the finish button.
           *
           * @property finish
           * @type String
           * @default "Finish"
           * @for defaults
           **/
          finish: "Finish",
  
          /**
           * Label for the next button.
           *
           * @property next
           * @type String
           * @default "Next"
           * @for defaults
           **/
          next: "Next",
  
          /**
           * Label for the previous button.
           *
           * @property previous
           * @type String
           * @default "Previous"
           * @for defaults
           **/
          previous: "Previous",
  
          /**
           * Label for the loading animation.
           *
           * @property loading
           * @type String
           * @default "Loading ..."
           * @for defaults
           **/
          loading: "Loading ..."
      }
  };
  })(jQuery);