﻿$(document).ready(function(){
    Cufon.replace('.pretext', { fontFamily: 'FGAaron'});
    Cufon.replace('h1, h2, h3, .h2', { fontFamily: 'Helvetica'});
    $(".tabs li.on a").each(function(){
        tmp = $(this).attr("tabindex");
        $("#tab" + tmp).show();
    });
    $(".tabs li a").click(function(){
        tmp = $(this).attr("tabindex");
        $(".tabs li").removeClass("on");
        $(".tab-content").hide();
        $("#tab" + tmp).show();
        $(this).parent().addClass("on");
    });
});
