jQuery.noConflict();
jQuery(document).ready(function($){
//--------------------------
$("#more").click(function() {
/*
        $(this).fadeOut("slow");
        $("#text").fadeIn("slow");
*/
    $(this).hide();
    $("#text").show();
});
$("#close").click(function(e) {
    e.preventDefault();
/*
        $("#text").fadeOut("slow");
        $("#more").fadeIn("slow");
*/
    $("#text").hide();
    $("#more").show();
});
//--------------------------
});

/*
window.onload=function() {
    jQuery(document).ready(function($){
        $.preloadCssImages();
    });
}
*/
