$(document).ready(function() {

    // Replace the paragraphs with the flash
    var ps = $('p.audio');
    for (i=0; i < ps.length; i++) {
        var id = ps[i].id;
        var file = id;
        var so = new SWFObject("cmsflash/stream.swf", id, "16", "16", "6");
        so.addVariable("the_file", file);
        so.write(id);
    }


    //replace checkboxes
    var boxs = $('[bob_bands]');

    //Grab the upload form...
    $('a.upload').click(function() {
        var page = $('#c3').load('bob_upload_form.html');
    });

    //Submit A Vote
    $('#votes').submit(function() {
        var val = 'band=' + $("input[name='bob_bands']:checked").val();
        $.ajax({
            type: "POST",
            url: "bob_vote.php",
            data: val,
            success: function(msg){
                $('#c3').attr('innerHTML', msg);
            }
        });
        document.cookie = "voted=true; expires=1/01/2010 00:00:00; path=/;";
        return false;
    });
});
