jQuery(function($) {
	$('a.image-swapper-link').live('click', function(e) {
		$(this).closest('.article').find('a.image-swapper-link.active').removeClass('active');
		$(this).addClass('active');
		
		if ($(this).hasClass('video')) {
			var url = '/inc/vimeoCallback.php';
			var videoUrl = $(this).attr('href');
			var data = {'videoUrl': videoUrl};
			$(this).closest('.article').find('.article-media').load(url, data);
		} else {
			var content = '<img src="' + $(this).attr('href') + '" alt="' + $(this).attr('title') + '" />';
			var caption = '<p class="article-media-caption">' + $(this).attr('title') + '</p>';
			$(this).closest('.article').find('.article-media').html(content + caption);
		}

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