Error 404

Oops! Page not found.

We could not find the page you were looking for. Meanwhile, you may return to home.

var counter = 0; var elem = $("#greeting"); setInterval(change, 1500); function change() { elem.fadeOut(function(){ elem.html(text[counter]); counter++; if(counter >= text.length) { counter = 0; } elem.fadeIn(); }); }