$(document).ready(function() { 
	$(".europe .continue").click(function () {
		var $newsletterItem = $(this).parent().parent().parent();
		$(".europe .news-short-desc").hide();
		$(".europe .news-body").show();
	});

	$(".holiday .continue").click(function () {
		var $newsletterItem = $(this).parent().parent().parent();
		$(".holiday .news-short-desc").hide();
		$(".holiday .news-body").show();
	});

	$(".ssd .continue").click(function () {
		var $newsletterItem = $(this).parent().parent().parent();
		$(".ssd .news-short-desc").hide();
		$(".ssd .news-body").show();
	});

});
