$(document).ready(function(){
    $('#itemview a.thumb').click( function() {
       $('#activeimage').hide().empty();
       var full_url = base + 'files/images/full/' + $(this).attr('filename');
       var resized_url = base + 'files/images/resized/' + $(this).attr('filename');
       var alt = $(this).attr('desc');
       $('#activeimage').append('<a href="' + full_url + '" class="nyroModal"><img src="' + resized_url + '" alt="' + alt + '"></a>').fadeIn();
       return false;
    });

    $('a.nyroModal').live('click', function(){
        $.nyroModalSettings({
             minWidth: 0,
             minHeight: 0,
             padding: 0
          });
        $.nyroModalManual({content: '<img src="' + this + '" />'});
        return false;
    });
    $('a.expand').hover(
        function() {
            $(this).parent().next().slideDown();
        },
        function() {
            $(this).parent().next().slideUp();
        }
    );

});
