/*******************************************************************
**--> Name: articleList
**--> Intro: 文章列表页特定脚本
**--> Author: lizus.com@gmail.com
**--> WebSite: http://www.lizus.com
*******************************************************************/

function articleList()
{
	clearBoth();
}
addLoadEvent(articleList);

function clearBoth()
{
	var clearBoth=document.createElement("div");
	clearBoth.style.clear="both";
	var footer=document.getElementById("footer");
	insBefore(clearBoth,footer);
}