$(document).ready(function(){
    $(window).load(function() {$("#preloader").fadeOut('fast'); })
});


$(document).ready(function(){
/* ANIMACJA LOGA */
$(".fade").css({"opacity": "0.1"});
$(".fade").animate({"opacity": "1", 'filter': ''}, 2500);
$("#text_box_open, #text_box_close").pngFix( {blankgif: '._images/blank.gif'} )
$(".move").stop().animate({left: '+=689'}, {duration: 1000, easing: "easeOutCubic"});
$(".text_box_open").fadeOut('slow');
$(".text_box_close").fadeIn('slow');
});


$(document).ready(function(){
$("#text_box_open").click(
function() {
	$("#move_content").stop().animate({left: '+=689'}, {duration: 1000, easing: "easeOutCubic"});
	$("#text_box_open").fadeOut('slow');
	$("#text_box_close").fadeIn('slow');
}


);

$("#text_box_close").click(
function() {
	$("#move_content").stop().animate({left: '-=689'}, {duration: 1000, easing: "easeOutCubic"});
	$("#text_box_open").fadeIn('slow');
	$("#text_box_close").fadeOut('slow');
}
);



});
