$(document).ready(function(){

    $("a.switch_thumb").toggle(function(){
        $(this).addClass("swap");
        $("ul.display").fadeOut("fast", function() {
            $(this).fadeIn("fast").addClass("thumb_view");
        });
    }, function () {
        $(this).removeClass("swap");
        $("ul.display").fadeOut("fast", function() {
            $(this).fadeIn("fast").removeClass("thumb_view");
        });
    });

    $( ".buttongo" ).button(
    {
        icons: {
            primary: "ui-icon-cart"
        },
        text: true
    }
    );
    $( ".config_p" ).button(
    {
        icons: {
            primary: "ui-icon-wrench"
        },
        text: false
    }
    );
    $(".remove_p" ).button(
    {
        icons: {
            primary: "ui-icon-trash"
        },
        text: false
    }
    );
});

