function mailingFocus(foc) {
    f=document.getElementById("YMLP0");
    if (foc == 0)
        f.value = "email address";
    else
        f.value = "";
};  
    jQuery(document).ready(function($) {
        $("body").addClass("js");
        if (is_shopping)
            $("#shopping_line .checkout").show();
        $(".releaseblock .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").hide();

});

