jQuery(function(){
	jQuery(".thumb").click(function(){
		jQuery("#photo").css('background', 'url("http://www.felixswimschools.com/assets/images/gallery/photo' + jQuery(this).attr('alt') + '.jpg")');
		jQuery(this).addClass('selected').siblings().removeClass('selected');
	});
});
