$(document).ready(function() {
// no borrar

$(".pictograma").mouseover(function() {
$(this).addClass('fondo');})
.mouseout(function() {
$(this).removeClass("fondo");
});


  //$(".pictograma").hover(function(){$(this).fadeOut(100);$(this).fadeIn(500);});
// no borrar
});