// Start jQuery

$(document).ready(function() {

// HOME SCRIPTS //

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

	// Archive containers
	
	var imgContainers = $('div#features > div');
	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

$(document).ready(function(){
		$('li.headlink').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); });
	});
