jQuery.noConflict();
jQuery(document).ready(function($){
//--------------------------
$(".gallery-category").hide();
$(".gallery-category").fadeTo(0,0);
$(".gallery-category").show();
//$("#text").hide();
$("#more").click(function() {
        $(this).fadeOut("slow");
        $("#text").fadeIn("slow");
});
$("#close").click(function() {
        $("#text").fadeOut("slow");
        $("#more").fadeIn("slow");
});
$("#gallery-overview li").hover(
    function() {
        o=$(this).find(".gallery-category");
        $(o).fadeTo(600,0.5);
    },
    function() {
        o=$(this).find(".gallery-category");
        if($(o).is(":visible")) {
            $(o).fadeOut(300);
        }
    }
);
//--------------------------
});

///*
window.onload=function() {
    jQuery(document).ready(function($){
        $.preloadCssImages();
    });
}
//*/
