/* 
 * Copyright (c) Rolf Klemenz - madnet.ch
 */

function madnetGalleryShow() {
    $("#g .gallery a").livequery(function() {
        $(this).slimbox();
    });
    $("#g h3").livequery(function(){
        $(this).mouseover(function () {
            $(this).css("background-color", "#FFFF88");
        }).mouseout(function() {
            $(this).css("background-color", "#FFFFFF")
        })
    });
    $("#g .galleryContainer").livequery(function() {
        $(this).click(function() {
            url = "/galleryImages/AllImages.php?id=" + $(this).attr('id') + "&thumbs=true&title=false";
            $(this).children(".gallery").load(url);
        });

    });
    $("#g").load("/galleryImages/AllImages.php");
    $("#g .galleryContainer").children(".gallery").slideUp("slow");
}
