$.fn.overlay = function()
{
	var element = $(this);
	var player = $("#player"); 
	player.wrap('<div class="fondo"></div>')
	player.show();
	player.animate({width:"800px", height:"480px"}, 1500,function(){
		$("#cerrar").animate({opacity: 1,},1500);
		$("#cerrar").click(function(){
			$(".fondo").remove();
		});													
	}).show();
}
