
function initPage() {
	$(window).resize(function() {
		if ($(window).height() < 380) {
			$('body').addClass('scroll');
		} else if ($(window).height() > 380 && $(window).scrollTop() == 0) {
			$('body').removeClass('scroll');
		}
	});

	var prevImage = $.cookie('prevImage');
	if (prevImage) {
		if ($('#image2').attr('src') != prevImage) {
				$('#image1').attr('src', prevImage);
				$('#image1').show();
				$('#image2').load(function() {
					$('#image2').fadeIn(1000);
				});
		} else {
			$('#image2').show();
		}
	} else {
		$('#image2').show();
	}
	$.cookie('prevImage', $('#image2').attr('src'));
	
	preloadImages();
}

function preloadImages() {
	var arrayOfImages = ['/images/bottom/coffeen.jpg', '/images/bottom/cv.jpg', '/images/bottom/elsa.jpg', 
						 '/images/bottom/fack.jpg', '/images/bottom/king.jpg', '/images/bottom/kontakt.jpg',
						 '/images/bottom/mobler.jpg', '/images/bottom/morphos.jpg', '/images/bottom/octopus.jpg',
						 '/images/bottom/sitta_ribb.jpg', '/images/bottom/skrivbord.jpg', '/images/bottom/skrivbord_2.jpg',
						 '/images/bottom/stella.jpg'];
	$(arrayOfImages).each(function(){ 
		$('<img/>')[0].src = this; 
	}); 
}
