﻿$(function() {
    Init_Left_Tool();
    Init_Right_Tool();
});

function Init_Left_Tool() {
    $('.gsWhatsOn .tabNav a').click(function(e) {
        $('.gsWhatsOn').load(this.href + ' .gsWhatsOn > *', function() {
            Init_Left_Tool();
        });

        e.preventDefault();
    });
}

function Init_Right_Tool() {
    $('.gsRecommends .tabNav a').click(function(e) {
        $('.gsRecommends').load(this.href + ' .gsRecommends > *', function() {
            Init_Right_Tool();
        });

        e.preventDefault();
    });
}
