$(function(){
	$("#transparence").css("opacity","0.4");
	$("#pic_list img").css("opacity","0.6")
	$("#pic_list img:eq(0)").css({'top':'0','opacity':'1'})
	$("#pic_list a").click(function(){return false})
})
$(function(){
	$("#pic_list img").click(function(){
	if($("#this_pic").attr('src')==$(this).attr('src')) return;
	$("#this_pic").fadeOut(0).fadeIn(200).attr('src',$(this).attr('src'));
	$('#this_a').attr('href',$(this).parents('a').attr('href'));
	$(this).parents('li').nextAll('li').find('img').animate({top:18,opacity:0.6},500);
	$(this).parents('li').prevAll('li').find('img').animate({top:18,opacity:0.6},500);
	$(this).animate({top:0},500).css('opacity','1');
})
})
