$(document).ready(function() {

    $(function() {
        $("#producttabs").infoTabs({
            tabContentClass: 'ppzone-tab-content',
            cancelLinkAction: true
        });

        $("#toolsRendement").infoTabs({
            tabContentClass: 'tabs-part',
            cancelLinkAction: true
        });
    });

    $(window).bind('hashchange', function(e) {
        var id = window.location.hash.replace("#", "");

        if (id == "")
            id = "tab1";

        // Select tabs
        $('li').removeClass('active');
        $('#' + id + 'btn').addClass('active');

        // Select tab content box
        $('.ppzone-tab-content').hide();
        $('#' + id).show();
    });

});

var tabcontroller = {}

tabcontroller.SetUrl = function(_url, _id) {
    window.location.hash = _url;
}
