
var animationStartDelay=1000;

// http://decodeuri.com/jquery-fxqueues-plugin-20/
function fader() {
      $(".headImg1").fadeOut({duration: 750, queue: "global"});
      $(".headImg2").fadeOut({duration: 750, queue: "global"});
      $("#headText h1").fadeIn({duration: 750, queue: "global"});
}

$(document).ready( function(){
	if(window.location.search.substring(1).indexOf("sp")==0) {  //on Speaking
      $(".headImg1").fadeOut(0);
      $(".headImg2").fadeOut(0);
      $("#headText h1").fadeIn(0);
	} else {
		setTimeout(fader,animationStartDelay);
	}
});

