(function($) {
"use strict";
$(document).ready(function() {
$('body').on('click', 'img.vlog-img-select', function(e) {
e.preventDefault();
$(this).closest('ul').find('img.vlog-img-select').removeClass('selected');
$(this).addClass('selected');
$(this).closest('ul').find('input').removeAttr('checked');
$(this).closest('li').find('input').attr('checked', 'checked');
});
});
})(jQuery);