$(function() {
	/* MATT'S SUPER COOL IMAGE GALLERY 6-03-08 */
	$("div.image-list ul li a").click(function() {			
	$('#image-current')
	.addClass('loading')
	.html("");
	
	var img = new Image();
	
	$(img).load(function () {  
		$(this).hide();
		
		$('#image-current')
		.removeClass('loading')
		.html(this);
		
		$(this).fadeIn();
	})
	.error(function () {
		alert("There was an error loading the image");
	})
	.attr('src', $(this).attr('href'))
	.attr('alt', $(this).attr('title'))
	.attr('id', 'current-image');
	
	// Add the border to the clicked image and remove from the rest
	$("div.image-list ul li a.current-image").removeClass('current-image');
	$(this).addClass('current-image');
	
	return false;
	});
	
	// load the first image
	$("div.image-list ul li:first a").trigger('click');
	// end gallery stuff
});
