


window.playerLoaded = false;
        function	onYouTubePlayerReady() {
	    window.playerLoaded = true;		
	}

$(document).ready(function(){


$('#playnow').click(function() {
  $('#teaserimage').fadeOut('slow'); 
  $('#teaservideo').hide();
  if (window.playerLoaded) {
    $('#teaservideo').css({"left":"auto"});
    $('#teaservideo').fadeIn('slow');
  } else {
    $('#errormessage').fadeIn("slow");
  }

});

});
