
	
$(window).ready(function() {
						   
$('a.thumbs').click(function(){
	
	// fade out active thumbs, sets and images
	$('.mainphoto').hide().removeClass('activephoto');
	$('.thumbset').hide().removeClass('activeset');
	$('.activethumb').removeClass('activethumb');
	
		// get the ID of the image and set to fade in
		var targetID = $(this).attr("id").replace("thumb_", "");
		var settargetID = targetID.split("_")
		
		$('#photo_'+targetID).fadeIn().addClass('activephoto');
		$('#set_'+settargetID[0]).fadeIn('slow').addClass('activeset');	
		$('#thumb_'+targetID).addClass('activethumb');
		$('#set_'+settargetID[0]).children(":first-child").addClass('activesetthumb');
});

$('a.setthumb').click(function(){
	
	// fade out active 
	$('.activephoto').hide().removeClass('activephoto');
	$('.activesetthumb').removeClass('activesetthumb');
	
		// get the ID of the image and set to fade in
		var targetID = $(this).attr("id").replace("icon_", "");
				
		$('#photo_'+targetID).fadeIn().addClass('activephoto');
		$('#icon_'+targetID).addClass('activesetthumb');
});

});




	
