$(function(){
	$("span.showmore")
		.hide();
	
	$("span.showplan")
		.append("<a href='#' title='展开/折叠 全部内容' class='showall'>+</a>");

	$(".showall")
	.click(function(){
		$(this)
			.parent().parent()
			.find("span.showmore")
			.slideToggle();
		return false;
	});
});

$(document).ready(function() {
	$('.fadetogary').hover(function() {
		$(this).stop().fadeTo(200,1);
	}, function() {
		$(this).stop().fadeTo(200,0.3);
	});
$('.fadetogary').fadeTo(200,0.3);
});
