$(document).ready(function(){

    // Preload MouseOver Menu Images
    MM_preloadImages('/menu/start_hover.gif','/menu/personalia_hover.gif','/menu/actua_hover.gif','/menu/teksten_hover.gif','/menu/tip_hover.gif','/menu/fotoalbum_hover.gif','/menu/links_hover.gif','/menu/contact_hover.gif');

    $(".autofocus").focus().select(); //=> Automatically focus on a form field when a page is loaded

    ////////////////////////////////////////////////////////
    // Photoalbum Thumbs & Photos                         //
    ////////////////////////////////////////////////////////
    
    $("#album .thumb_buttons img").css("opacity", "0.5");
    $("#album .thumb_buttons img").live("mouseover", function(){
        $(this).css("opacity", "1");
    });
    $("#album .thumb_buttons img").live("mouseout", function(){
        $(this).css("opacity", "0.5");
    });
    $("#album .thumb_buttons img").css("opacity", "0.5");

    $("#album a").live("click", function(e){
        
        if (e.button !== 0) return true; //=> live() right-click work-around

        if ($(this).hasClass("thumb_delete"))
        {
            // Delete photo
            return true;
        }

        var href = $(this).attr("href");
        var qstring = href.split("?");
        qstring = qstring[1];

        // Load content via Ajax
        $("#album").load("inc.explorer.php", qstring, function(){
            // Set button opacity
            $("#album .thumb_buttons img").css("opacity", "0.5");
            $("#album #thumbs form[name='editthumbs']").attr("action", href);
        });
        return false;

    });


});
