jQuery(function($) {
	$('a.image-swapper').live('click', function(e) {
		var width = $(this).closest('.single').find('.media-wrapper.image').not('#sidebar .media-wrapper.image').attr('width');
		var new_href = $(this).find('img').attr('src');
		width = (width) ? ' width="'+width+'"' : '';

		$(this).closest('.single').find('a.image-swapper.active').removeClass('active');
		$(this).addClass('active');


		var image = $('<img src="' + new_href.replace('/icon','/large') + '" alt="' + $(this).attr('title') + '"'+width+' class="article-image" />');
		var caption = '<p class="caption">' + $(this).attr('title') + '</p>';


		$(this).closest('.single').find('.modal-box-link').attr('href',new_href.replace('/icon','').replace('/medium',''));

		$(this).closest('.single').find('.media-wrapper.image').not('#sidebar .media-wrapper.image').html(image);

		$(this).closest('.single').find('.article-media-caption').remove();
		$(this).closest('.single').find('.article-media').append(caption);



		e.preventDefault();
	});
});
