﻿$(document).ready(function () {
    var $tabs = $(".tabbed .tabs")
    var $panels = $(".tabbed .panel")
    $panels.hide();
    $(".tabbed .panel:first").show();
    $(".tabbed .tabs li:first").addClass('on');
    $('li a', $tabs).click(function () {
        $('li', $tabs).removeClass('on'); ;
        $(this).parent().parent().addClass('on');
        var hashid = $(this).attr('href');
        $panels.hide();
        $(hashid).fadeIn(1000); return false
    });
    if (!$.support.opacity) {
        $(".masthead .tabs li").hover(function () {
            $(this).hasClass("tab1") ? $(this).toggleClass("hover_home") : $(this).toggleClass("hover")
        })
    }
});
