$(document).ready(function() {
	$('img').hide();
	$(document.body).hide();
	
	$(document.body).delay(200).fadeIn('slow');
	$('img:first').delay(700).fadeTo('slow', 0.5);
	$('img:last').delay(1000).fadeTo('slow', 0.5);

	$('a#contact').colorbox({iframe:true, href:'contact.php', innerWidth:'270px', innerHeight:'320px', scrolling:false});
	$('a#dropbox').colorbox({iframe:true, href:'http://www.dropitto.me/juhani', innerWidth:'800px', innerHeight:'550px', scrolling:false});
	
	$('img').hover(
		function(){
			$(this).stop(true,false).fadeTo('fast', 1);
		},
		function(){
			$(this).stop(true,false).delay(100).fadeTo('slow', 0.5);
		}
	);
	
	(function($) {
	  var cache = [];
	  // Arguments are image paths relative to the current page.
	  $.preLoadImages = function() {
		var args_len = arguments.length;
		for (var i = args_len; i--;) {
		  var cacheImage = document.createElement('img');
		  cacheImage.src = arguments[i];
		  cache.push(cacheImage);
		}
	  }
	})(jQuery)
	jQuery.preLoadImages("/img/overlay.png");
	
	
});

