$(document).ready(function(){ 
    
    $('#errorBox').click(function(){
        $('#errorBox').hide('slow');
    });
    
    $('.showpics dd img').click(function(){
        $('.showpics dt img').attr('src',this.src.replace(/76x66/,'285x215'));
    });
    
    $("a[rel^='prettyPopin']").prettyPopin({width:600});
});