$(document).ready(function () {
	$('.subsections a').click(function(event) {
		event.preventDefault();
	});
	
	$('#kreuzfahrten').mouseover(function(event) {
		$(this).find('h2').addClass('hover');
		$(this).find('h3').addClass('hover');
		$(this).find('p').addClass('hover');
		$(this).find('ul.subsections').addClass('hover');
	});
	
	$('#kreuzfahrten').mouseout(function(event) {
		$(this).find('h2').removeClass('hover');
		$(this).find('h3').removeClass('hover');
		$(this).find('p').removeClass('hover');
		$(this).find('ul.subsections').removeClass('hover');
	});
	
	$('#resorts').mouseover(function(event) {
		$(this).find('h2').addClass('hover');
		$(this).find('h3').addClass('hover');
		$(this).find('p').addClass('hover');
		$(this).find('ul.subsections').addClass('hover');
	});
	
	$('#resorts').mouseout(function(event) {
		$(this).find('h2').removeClass('hover');
		$(this).find('h3').removeClass('hover');
		$(this).find('p').removeClass('hover');
		$(this).find('ul.subsections').removeClass('hover');
	})
	
});
