
jQuery.easing.easeOutQuart = function (x, t, b, c, d) {
	return -c * ((t=t/d-1)*t*t*t - 1) + b;
};

jQuery(document).ready(function() {
   jQuery('#menu-wrap').hide().slideDown('slow');
    jQuery('#moveMe').hide();
			
    setTimeout ("jQuery('#moveMe').show('slow')",5000);
    setTimeout ("jQuery('.frasecica').show('slow')",15000);
   });  
