﻿$(function() {
    $('.tab-bar a').click(function() {
        var ref = $(this).attr('ref');
        $(this).parent().siblings('.content-box').children().hide().filter('#' + ref).show();
    });
});


$(function() {
    $('.TabsControl').children('.content-box').children().hide().eq(0).show();
});

