  $(function() {
     $("#datepicker").datepicker({onSelect: function(date, inst) {
            window.location = '/edicion/'+date;
        }, showOn: 'button', buttonText: 'EDICIONES ANTERIORES', dateFormat: 'dd/mm/yy'});
   });

// function equalHeight(group) {
// tallest = 0;
// group.each(function() {
// thisHeight = $(this).height();
// if(thisHeight > tallest) {
// tallest = thisHeight;
// }
// });
// group.height(tallest);
// }

// $(document).ready(function() {
// equalHeight($(".columna-noticia"));
// })
Shadowbox.init({
    language:   "es",
    handleOversize: "drag"
});

/* sfEasyCommentsPlugin.main */
// var sfEasyComments={VERSION:'$Id: form-jquery.js 15896 2009-03-01 17:28:10Z hartym $'};
// sfEasyComments.processSubmit=function(form){
//   try{
//     var container=jQuery(form).parent('div.sfEasyCommentsFormContainer').eq(0);
//     jQuery.ajax({type:'POST',url:form.action,data:jQuery(form).serialize(),success:function(txt){container.html(txt);},error:function(){alert('An unpredicted error happened and your comment could not be posted.\n\nIf this error persists, please contact the site owner.');}});
//   }
//   catch(e){
//     try{
//       console.log(e);
//     }
//     catch(_e)
//     {}
//   }
//   return false;
// }

var tamanoLetrapordefecto = 5;
var tamanoLetra = tamanoLetrapordefecto;
var tamanoLetraminimo = 3;
var tamanoLetramaximo = 7;
var identidadLetra;

function aumentaLetra() {
    if (tamanoLetra < tamanoLetramaximo) {
    tamanoLetra += 1;
    identidadLetra = document.getElementById('tamano');
    identidadLetra.className = 'tamanoletra' + tamanoLetra;
    }
}

function disminuyeLetra() {
    if (tamanoLetra > tamanoLetraminimo) {
    tamanoLetra -= 1;
    identidadLetra = document.getElementById('tamano');
    identidadLetra.className = 'tamanoletra' + tamanoLetra;
    }
}

//   $(function() {
//     $('#slideshow').cycle({
//       fx: 'all',
//       speed: 500,
//       timeout: 20000
//     });
//   });

