/**
	@author Joscha Schmidt
**/

$(function(){

	$('.catSmallBox')
		.mouseenter(function(){
			$(this)
				.fadeOut('fast')
				.next('.catLargeBox')
					.fadeIn('fast');	
		})
	$('.catLargeBox')
		.mouseout(function(){
			$(this)
				.fadeOut('fast')
				.prev('.catSmallBox')
					.fadeIn('fast');
		});
	
	//INTERNET EXPLORER
	$('.catSmallBoxIe')
		.mouseenter(function(){
			$(this)
				.hide()
				.next('.catLargeBoxIe')
					.show();
		})
	$('.catLargeBoxIe')
		.mouseout(function(){
			$(this)
				.hide()
				.prev('.catSmallBoxIe')
					.show();
		});
	
	$('#imprint')
		.click(function(){
			$('#modal')
				.fadeIn();
		});
	$('#modal')
		.click(function(){
			$('#modal')
				.fadeOut();
		});

});



