$(function(){
	$("#thumbnails a").each(function(){
	    $(this).not(".sel").css("opacity", 0.5);
		this.description = $(this).attr("title");
		$(this).removeAttr("title");
	}).hover(function(){
	    $(this).not(".sel").fadeTo("normal", 1);
	}, function(){
	    $(this).not(".sel").fadeTo("normal", 0.5);
	}).click(function(){
	    $(this).addClass("sel").parent().siblings().find("a").removeClass("sel").fadeTo("normal", 0.5);
		$("#description").html(this.description);
		$("#rightadv div.product:eq(" + this.id.substring(1) + ")").show().siblings(".product").hide();
	    return false;
	}).eq(0).click(function(){
	    $("#viewall").show();
	}).end().not(":eq(0)").click(function(){
	    $("#viewall").hide().find("a.on").click();
	});
});