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