﻿$(function() {
    $("a[rel=givebest]").click(function() {
        if ($(this).attr("className") == "on_dis") {
            $(this).removeAttr("className");
            $(this).attr("className", "off_dis");
            $(this).text("◢◣");
            $(".bracontent").slideDown("slow");
        } else {
            $("a[rel=givebest]").attr("className", "on_dis");
            $("a[rel=givebest]").text("◥◤");
            $("#gb_close").removeAttr("className");
            $(".bracontent").slideUp("slow");
        }
    })
});


setTimeout('$(".bracontent").slideUp("slow");$("a[rel=givebest]").attr("className", "on_dis");$("a[rel=givebest]").text("◥◤");$("#gb_close").removeAttr("className");',1000)  