/* JQuery Toggle */
$(document).ready(function () {
    $(".Toggle_Content_Footer").hide();

    $("a.toggle").click(function () {
        $(this).parent('.toggle_description_footer').siblings('.Toggle_Content_Footer').slideToggle("slow", showclose);
        return false;
    });

    $("a.close_toggle").click(function () {
        $(this).siblings('.Toggle_Content_Footer').slideUp("slow");
        $(this).css("display", "none");
        $(this).siblings('.toggle_description_footer').children('a.toggle').html('About FurnitureDealer.net');
        return false;
    });
});

function showclose() {
    if ($(this).css("display") == "block") {
        $(this).siblings('a.close_toggle').css("display", "block");
        $(this).siblings('.toggle_description_footer').children('a.toggle').html('Close');
    } else {
        $(this).siblings('a.close_toggle').css("display", "none");
        $(this).siblings('.toggle_description_footer').children('a.toggle').html('About FurnitureDealer.net');
    }
}

$(function () {
    $("a[rel]").overlay({ expose: '#EBEBEB' });
});
