$(document).ready(function(){
						   
	// Image gallery for the startpage
	$("h2").append('<em></em>')

	$("#ThumbsContainer a").click(function(){

	  var largePath = $(this).attr("href");
	  var largeAlt = $(this).attr("title");

	  $("#LargeImg").attr({ src: largePath, alt: largeAlt });

	  $("h2 em").html(" (" + largeAlt + ")"); return false;
	});
	
	// Image fader for the rest of the pages
	$('#images').innerfade({ speed: 'slow', timeout: 4000, type: 'sequence', containerheight: '250px' });

	$('img[@src$=.png], div#wrapper, div#footershadow').ifixpng(); 
});