1/**
2 * Javascript for Taratasy template
3 * For future use!
4 *
5 * @author Symon Bent <hendrybadao@gmail.com>
6 *
7 */
8
9var tpl_taratasy = (function() {
10
11    // public methods/properties
12    var pub = {};
13
14    // private vars
15
16
17    /**
18     * initialize everything
19     */
20    pub.init = function() {
21
22    };
23
24    // return only public methods/properties
25    return pub;
26})();
27
28jQuery(function() {
29    tpl_taratasy.init();
30});
31