﻿$(function () {
    var tabContainers = $('div.tab_cont > div');
    tabContainers.hide().filter(':first').show();

    $('.tabNavigation a').click(function () {
        tabContainers.hide();
        tabContainers.filter(this.hash).show();
        $('.tabNavigation a').removeClass('on');
        $(this).addClass('on');
        return false;
    }).filter(':first').click();
});


function ShowHide(link,div1) {
    $(div1).animate({ "height": "toggle" }, { duration: 1000 });
    $(link).toggleClass('on');
}

