// Start jQuery

$(document).ready(function() {

// HOME SCRIPTS //

	/* Recent work switcher *******************************************************/
	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;
	});
	
	$(function() {
		$('.rollover').hover(function() {
			var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).attr('hover'));
			$(this).attr('hover', currentImg);
		}, function() {
			var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).attr('hover'));
			$(this).attr('hover', currentImg);
		});
	});
	
}); // End jQuery