jQuery.fn.delay = function(time,func){
	this.each(function(){
		setTimeout(func,time);
	});
	
	return this;
};

$(document).ready(function() {

	$(this).delay(1000,function(){
		$("#teaser_player").animate({ 
			opacity:0.85,
		}, 900 );
	});

});

