// JavaScript Document
function abre(id, video){
	var altura = jQuery(document).height()-4;
	var largura = jQuery(document).width();
	jQuery('#'+id).css({'height': altura, 'width': largura});
	$('#'+id).animate({height: 'toggle'}, 1000, function(){
		$('html,body').animate({
			scrollTop: $('#'+id).offset().top
		} , 550, function(){
				jQuery('#carregando-video').fadeIn('slow');
				$.ajax({
				   url: "video.php",
				   data: "v="+video,
				   type: "POST",
				   success: function(dados){
					    jQuery('#carregando-video').fadeOut('slow');
						jQuery('#video').fadeIn('fast').html(dados);
				   }
				});
			});
	});
}
function fecha(id){
	jQuery('#'+id).fadeOut('slow');
}
