$('#images, #videos').live('change', function() {
    if ($('#images').attr('checked') == true) {
        $('.img').show();
        $('.video').hide();
    }
    if ($('#videos').attr('checked') == true) {
        $('.img').hide();
        $('.video').show();
    }
    return false;
});
