$(document).ready(function() {
	$(".thumbSelector ul li a").click(function() {
    $(".thumbSelector ul li a.here").removeClass("here");
    $(this).addClass("here");
    return false;
	});
});


$(document).ready(function(){	
	$(".thumbSelector ul li a").click(function(){
		var src = $(this).attr("name");
		$("#target").fadeOut("slow",function() {
			$(this).attr("src",src);
			$(this).fadeIn();
		});
		return false;
	});
});

