// Start jQuery

$(document).ready(function() {

// HOME SCRIPTS //

/* Recent work switcher *******************************************************/

	// Archive containers
	
	var imgContainers = $('div#recentimages > img');
	imgContainers.hide().filter(':first').show();
	
	$('ul.recentitems li a').click(function () {
		imgContainers.hide();
		imgContainers.filter(this.hash).fadeIn(800);
		$('ul.recentitems li a').removeClass('selected');
		$(this).addClass('selected');
		return false;
	});
	
}); // End jQuery