$(document).ready(function(){
	$('div.mark').hide();
	$('#halloween').hide();
	$('#thanksgiving').hide();
	$('#gift').hide();
	$('a.more').click(function(){
		var $parentDiv = $(this).parents('div:eq(0)');
		$parentDiv.children("div.mark").animate({opacity: 'toggle', height: 'toggle'}, 'slow');
		return false;
	});
});
$(document).ready(function(){
	$('#hallo').click(function(){
		$('#thanksgiving').hide();
		$('#gift').hide();
		$("#halloween").animate({opacity: 'toggle', height: 'toggle'}, 'slow');
		return false;
	});
});
$(document).ready(function(){
	$('#thank').click(function(){
		$('#halloween').hide();
		$('#gift').hide();
		$("#thanksgiving").animate({opacity: 'toggle', height: 'toggle'}, 'slow');
	   	return false;
	});
});
$(document).ready(function(){
	$('#christmas').click(function(){
		$('#halloween').hide();
		$('#thanksgiving').hide();
		$("#gift").animate({opacity: 'toggle', height: 'toggle'}, 'slow');
		return false;
	});
});