﻿
/* Bespoke ############## */
/* Güneş Eser - ojons.com */

/// <reference path="jqueryIntellisense.js" />


$(document).ready(function () {
    $('#mainMenu li').hover(
    function () {
        $(this).children('ul').fadeIn();
    },
    function () {
        $(this).children('ul').fadeOut();
    });
});

    $.tools.tabs.addEffect("fader", function (tabIndex, done) {

        var conf = this.getConf(),speed = conf.fadeOutSpeed,panes = this.getPanes();

        var $tab = this.getCurrentTab();

        panes.fadeOut(400, done);

        panes.eq(tabIndex).fadeIn(400, done);

        $tab = this.getTabs().eq(tabIndex);

        done.call();

    });


