// Start jQuery

$(document).ready(function() {

// GLOBALS //

/* Hover functionality site-wide **********************************************/
	
	$('.hover').hover(function() {
	  $(this).addClass('active');
	}, function() {
	  $(this).removeClass('active');
	});
	

/* Fade toggler ***************************************************************/

	$.fn.fadeToggle = function(speed) {
	   return this.animate({opacity: 'toggle'}, speed);
	};
	
	

	
		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
