jQuery.noConflict();
jQuery(document).ready(function($){
//--------------------------

//$("#text").hide();
$("#more").click(function() {
        $(this).fadeOut("slow");
        $("#text").fadeIn("slow");
        //mySlideShow.f_stop();
});
$("#close").click(function(e) {
    e.preventDefault();
        $("#text").fadeOut("slow");
        $("#more").fadeIn("slow");
        //mySlideShow.f_run();
});
$("#slideshow").hide();
$("#content").css({
        backgroundImage:    "url(/resources/images/interface/loader.gif)",
        backgroundPosition: "center"
});
/*
$('#slideshow img:first').load( function() {
    $("#slideshow").show();
    $("#content").css("background","none");
    mySlideShow.f_run();
});
*/
//--------------------------
});


window.onload=function() {
    jQuery(document).ready(function($){
        $("#slideshow").show();
        $("#content").css("background","none");
        $.preloadCssImages();
    });
    mySlideShow.f_run();
}
