﻿var argsForHotBlogs, listForHotBlogs;
function getBlogListSpelCallback()
{	
	return;
	var hotBlogs = document.getElementById("hotBlogs");
	for(var i = 0; i < hotBlogs.childNodes.length; i++)
	{
		if(hotBlogs.childNodes[i].getAttribute("blogId") == blogId)
		{
			hotBlogs.childNodes[i].className = "areaBoxEx";
			break;
		}
	}
}

function initBlogListEngine()
{
	argsForHotBlogs = new NetBlog.NameValueCollection();
	listForHotBlogs = new DataList("GetHotBlogs", argsForHotBlogs, skin + "/xslt.templates/BlogListSpel.xsl", "hotBlogs", null, 9999, getBlogListSpelCallback, null);
}
initBlogListEngine();
listForHotBlogs.create();