$(function() {
	var img = $('#image img');
	
	// Unobtrusive image hiding for fade in on load
	$(img).hide();
	
	// Image hover fading
	$(img).hover(function() {
		$(this).animate({'opacity' : 0.85}, 300);
	}, function() {
		$(this).animate({'opacity' : 1}, 500);
	});
});
$(window).load(function() {
	// Fade in image on pageload
	$('#image img').fadeIn(400);
});
