
function addcoll(id,type){
	$.post('/collection/add/',{id:id,type:type},function(data){
		if(type=='blog'){
			$.alertMsg('提示', data+'该文章！');
		}
		else if(type=='photo'){
			$.alertMsg('提示', data+'该图片！');
		}
		else if(type=='lore'){
			$.alertMsg('提示', data+'该文章！');
		}else if(type == "video"){
		    $.alertMsg('提示', data+'该视频！');
		}else if(type == "topic"){
			$.alertMsg("提示", data + "该话题！");
		}else if(type == "netclass_room"){
			$.alertMsg("提示", data + "该课堂！");
		}else if(type == "netclass_lecture"){
			$.alertMsg("提示", data + "该讲师！");
		}else if(type == "netclass_heart"){
			$.alertMsg("提示", data + "该心理咨询室！");
		}else if(type == "netclass_course"){
			$.alertMsg("提示", data + "该课程！");
		}
	})
}
