// Start jQuery

$(document).ready(function() {

// HOME SCRIPTS //

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

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

$(document).ready(function() {

// HOME SCRIPTS //

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

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




$(document).ready(function() {

// HOME SCRIPTS //

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

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

$(document).ready(function() {

// HOME SCRIPTS //

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

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