/* ================================================================ 
This copyright notice must be untouched at all times.
Copyright (c) 2008 Stu Nicholls - stunicholls.com - all rights reserved.
=================================================================== */

$(document).ready(function(){
		$("#gallery li:first b:first").addClass('hover');
		$("#gallery li:first b:first").find('span:first').fadeIn(1000);


$("#gallery li b").click(function(){
		if (this.className.indexOf('hover') == -1 ) {
		$("#gallery li b.hover span").fadeOut(1000);
		$("#gallery li b.hover").removeClass('hover');
		}
		$(this).addClass('hover');
		$(this).find('span:first').fadeIn(1000);
});

});

