$(document).ready(function(){
	
	$('a img').hover(function(){ 
		$(this).fadeTo(200,0.3); 
	},function() {
		$(this).fadeTo(200,1); 
	});
	
	$('.thumb > li > a').click(function(){
		var src = $(this).attr("href");
		$('.thumb > li > a').removeClass("selected");
		$(this).addClass("selected");
		$(this).parent().parent().parent().find("span").find("img").fadeOut("slow",function() {
			$(this).attr("src",src);
			$(this).fadeIn();
		});
		return false;
	});

});
