	//Corner----------------------------------
	function cargar_corner(){
		
	}//fin función
	
	//Social Bar----------------------------------
	

	//Youtube----------------------------------
	function youtube(op){
		var pag = $('#youtubepag').val();
		if(op){ //alante
			pag++;
		}else{ //atrass
			pag--;
		}//fin if
		
		var w = $('.byoutube_cont').width();
		$('.byoutube .byoutube_cont').animate({ opacity: 0, width:0}, 500, function(){
		  	$(this).empty();
		  	$(this).load('ajax/youtube.php', {pagina: pag}, function(data){
				$(this).animate({ opacity: 1, width: w }, 500);
			});
		  });		
	}//fin función
	
	function vervideo(){
		var anc = $(document).width();
		$('contentWrap').animate({ width: anc }, 500, function(){
			$(this).width(anc);
			$(this).addClass('pantalla');
		});	
	}//fin función 
