jQuery(function($){
    $('select#productions-sorter').change(function(event){
        location.href = $(this).val();
    });
    
    $('table.productions-details td.gallery-thumbnails a').click(function(event){
        event.preventDefault();
        
        $('table.productions-details td.gallery-fullsize img')
            .attr('src', $(this).attr('href').replace('/thumbnails/','/fullsize/') );
    });
    $('table.productions-listing a.view-cart').click(function(event){
        event.preventDefault();
        $(this).parents('form').submit();
    });
});