$( document ).ready(function() {
$(this).click(function(e){
id = e.target.tagName.toLowerCase();
if (id == ‘img’) {
img = e.target;
parent = $(img).parent();
if ((parent[0][‘nodeName’]) != ($(‘#logo’)[0][‘nodeName’])) {
div = $(parent).parent();
if ($(div).hasClass(‘enable’)) {
$(‘#img_wrapper.enable’).remove();
} else {
$(‘body’).prepend(‘
‘);
}
}
}
});
});