$(document).ready(function() {
    $('.thumb').bind('click', function() {
        $(this).hide();
        $(this).parent().width('220px');
        $(this).parent().height('167px');
        $(this).siblings().fadeIn();
    });
    $('.event_pic').bind('click', function() {
        $(this).hide();
        $(this).parent().width('128px');
        $(this).parent().height('97px');
        $(this).siblings().fadeIn();
    });
    });
