$(document).ready(function(){
$('#botones .boton').click(function(){
$('cuadro').removeClass();
if(this.id == 'aumentar'){
	$('cuadro').addClass('grande');
	}
else if(this.id == 'disminuir'){
	$('cuadro').addClass('chica');
}
$('#botones .boton').removeClass('seleccion');
    $(this).addClass('seleccion');
 });						   
});
/*efecto hover*/
$(document).ready(function() {
  $('#botones .boton').hover(function() {
    $(this).addClass('sobre');
  }, function() {
    $(this).removeClass('sobre');
  });
});


/// FUNCIONES VARIAS DE NOTA.HTML
// herramientas
function tamFuente (nivel, elem) { 
var elemento = document.getElementById(elem) 
    elemento.className = "nivel"+nivel; 
} 


function Imprimir(strurl) {
msg=window.open(strurl,"nombre","directories=no,menubar=no,width=450,resizable=yes");
     }



