    $(document).ready(function(){
		<!-- Engergi -->
		$(".energi").mouseenter(function() {
			$(".farver img").stop(true, true).stop(true, true).fadeOut('slow');
			$(".lys img").stop(true, true).stop(true, true).fadeOut('slow');
			$(".cowork img").stop(true, true).stop(true, true).fadeOut('slow');
			$(".indretning img").stop(true, true).stop(true, true).fadeOut('slow');
		});
		$(".energi").mouseleave(function() {
			$(".farver img").stop(true, true).stop(true, true).delay(200).fadeIn('slow');
			$(".lys img").stop(true, true).stop(true, true).delay(200).fadeIn('slow');
			$(".cowork img").stop(true, true).stop(true, true).delay(200).fadeIn('slow');
			$(".indretning img").stop(true, true).stop(true, true).delay(200).fadeIn('slow');
		});
		<!-- Lys -->
		$(".lys").mouseenter(function() {
			$(".farver img").stop(true, true).stop(true, true).fadeOut('slow');
			$(".energi img").stop(true, true).stop(true, true).fadeOut('slow');
			$(".cowork img").stop(true, true).stop(true, true).fadeOut('slow');
			$(".indretning img").stop(true, true).stop(true, true).fadeOut('slow');
		});
		$(".lys").mouseleave(function() {
			$(".farver img").stop(true, true).delay(200).fadeIn('slow');
			$(".energi img").stop(true, true).delay(200).fadeIn('slow');
			$(".cowork img").stop(true, true).delay(200).fadeIn('slow');
			$(".indretning img").stop(true, true).delay(200).fadeIn('slow');
		});
		<!-- Farver -->
		$(".farver").mouseenter(function() {
			$(".energi img").stop(true, true).fadeOut('slow');
			$(".lys img").stop(true, true).fadeOut('slow');
			$(".cowork img").stop(true, true).fadeOut('slow');
			$(".indretning img").stop(true, true).fadeOut('slow');
		});
		$(".farver").mouseleave(function() {
			$(".energi img").stop(true, true).delay(200).fadeIn('slow');
			$(".lys img").stop(true, true).delay(200).fadeIn('slow');
			$(".cowork img").stop(true, true).delay(200).fadeIn('slow');
			$(".indretning img").stop(true, true).delay(200).fadeIn('slow');
		});
		<!-- Co work -->
		$(".cowork").mouseenter(function() {
			$(".farver img").stop(true, true).fadeOut('slow');
			$(".lys img").stop(true, true).fadeOut('slow');
			$(".energi img").stop(true, true).fadeOut('slow');
			$(".indretning img").stop(true, true).fadeOut('slow');
		});
		$(".cowork").mouseleave(function() {
			$(".farver img").stop(true, true).delay(200).fadeIn('slow');
			$(".lys img").stop(true, true).delay(200).fadeIn('slow');
			$(".energi img").stop(true, true).delay(200).fadeIn('slow');
			$(".indretning img").stop(true, true).delay(200).fadeIn('slow');
		});
		<!-- Indretning -->
		$(".indretning").mouseenter(function() {
			$(".farver img").stop(true, true).fadeOut('slow');
			$(".lys img").stop(true, true).fadeOut('slow');
			$(".cowork img").stop(true, true).fadeOut('slow');
			$(".energi img").stop(true, true).fadeOut('slow');
		});
		$(".indretning").mouseleave(function() {
			$(".farver img").stop(true, true).delay(200).fadeIn('slow');
			$(".lys img").stop(true, true).delay(200).fadeIn('slow');
			$(".cowork img").stop(true, true).delay(200).fadeIn('slow');
			$(".energi img").stop(true, true).delay(200).fadeIn('slow');
		});
		$(".hoverwrapper a").click(function() {
			$(".farver img").show();
			$(".lys img").show();
			$(".cowork img").show();
			$(".energi img").show();
			$(".indretning img").show();
		});
	});

