function listCategory(obj,category,vb)
{
	var str = '';
	var n = 0;
	
	for(var i=0; i < obj.length; i++)
	{
		str+= '<div class="category_row">';
		str+= '<div style="float: left; width: 388px;"><a href="/'+category+'/'+obj[i].alias+'/" class="videoline">'+obj[i].title+'</a> /'+obj[i].total;
		str+= '<br><span style="font-size: 10px">Последнее видео: <a href="/'+category+'/'+obj[i].alias+'/'+obj[i].video[0].alias+'/" class="videoline" style="font-size: 10px;">'+obj[i].video[0].title+'</a></span>';
		str+= '<br><br>'+obj[i].decription;
		str+= '</div>';
		str+= '<div style="float: right; width: 220px; text-align: center;"><a href="/'+category+'/'+obj[i].alias+'/'+obj[i].video[0].alias+'/"><img src="'+vb+obj[i].video[0].cover+'" onmouseover="this.className=\'new_tab_act\'" onmouseout="this.className=\'new_tab_noact\'" class="new_tab_noact" /></a></div>';
		str+= '</div>';
		
		n++;
	}	
	
	document.open();
	document.write(str);
	document.close();	
}
