$("link[href='/css/hide.css']").remove();

$(document).ready(function(){
  $('#ver-texto').hide();
  $('#ver-texto-large').hide();
  $('#anterior').hide(); 
  $('#proximo').hide(); 
  $('#mas-imagenes').hide(); 
 $('a#btn-image').click(function() {
    $('.content').hide();
    $('#button').hide();
    $('#ver-texto').show();
	$('#ver-texto-large').show();
	$('#anterior').show(); 
	$('#proximo').show(); 
	$('#mas-imagenes').show();     
    return false;
  });
 $('a#btn-text').click(function() {
    $('.content').show();
    $('#button').show();
    $('#ver-texto').hide();
  	$('#ver-texto-large').hide();
 	 $('#anterior').hide(); 
 	 $('#proximo').hide(); 
	  $('#mas-imagenes').hide();     
    return false;
  });  
});
