function mailingFocus(foc) {
    f=document.getElementById("YMLP0");
    if (foc == 1)
        f.value = "";
};  
    jQuery(document).ready(function($) {
        if (is_shopping)
            $("#shopping_line .checkout").show();
        $(".eleaseblock .image").each(function() {
            var i = Math.floor(Math.random()*80);
            $(this).css({marginRight:i*-1, paddingLeft:i});
        });
        $(".wpsc_buy_button").click(function() {
            $("#shopping_line .checkout").css({"display" : "inline"})
                $(this).attr("value", "Thank you.")
                .addClass("highlight");
        });
        $("#contactus a").add("a.befriend-toggle").click(function () {
            $("#befriend").toggle(100);
            return false;
        });
        $("#about-body h3").css({cursor : "pointer"})
            .click(function() {
                $(this).next("p,ul").toggle()
             }).next("p,ul").not(":first").hide();

});

