$(function () {
	infoPieces();
});
function infoPieces(){
	$(".fash_content").each(function(){
	var html_content=$(this).html();
	var text_content=$(this).text();
   	if(html_content.indexOf("<img"))
   		$(this).text(text_content.substring(0,150)+"......");
	});
	$(".more").click(function(){
		$(this).text()=="更多>>"?$(this).text("收缩<<"):$(this).text("更多>>");
		$("."+this.id).toggle();
	});
}
