College.arrCollege = new Object();
var url_college_id = "http://js.data.edu.qq.com/college/hash_id_name.js";
College.JsLoader.load(url_college_id, function()
{
});

College.Plugin = {
	bold: function(str)
	{
		return str.bold();
	},
	collegeNameUrl: function(sID){
		var str = "<a href='http://data.edu.qq.com/college_info/"+sID+"/index.shtml'>"+College.arrCollege[sID]+"</a>";
		return str;
	},
	collegeIDtoName: function(sID)
	{
		return College.arrCollege[sID];
	}};

