
$(document).ready(function() {
    
    // cufon replace fonts
    Cufon.replace('#content .title1', {textShadow: '#666 1px 1px'});
    Cufon.replace('.mceContentBody h1');
    Cufon.replace('.col-2 h2');
    Cufon.replace('.news .date .day');
    Cufon.replace('.news .date .month');
    
    
    
    // teaser boxes all the same height
    var maxHeight = 0;
    $('.maxheight').each(function(){ 
        maxHeight = Math.max(maxHeight, $(this).height()); 
    }).height(maxHeight);

    $("a[rel^='lightbox']").prettyPhoto({
        overlay_gallery: false
    });
    
});


