
var LAST_ID = -1;

function clearList()
{
	jQuery("[class=category-icon-link]").text("+");
	jQuery.each(jQuery("[class=category-link]"), function (i,oAnchor)
						{
							aList = jQuery(oAnchor).attr("id").split("_");
						
							oAnchor.href = "javascript:ShowList('"+aList[0]+"','"+aList[1]+"','"+aList[2]+"','"+aList[3]+"')";
							
							
						});
						
	jQuery("[class=category-link]").css("color","white");
	jQuery("[class=subcategory]").hide();
}

function ShowList(sLocal, sId, sCategoryLink, sPageId)
{
	clearList();

	jQuery("#category-icon-"+sId+" a").text("-");
	
	jQuery("#category-"+sId+" a[class=category-link]").attr("href", G_BASEURL+sLocal+"/"+sPageId+"/"+sCategoryLink);
	jQuery("#category-"+sId+" a[class=category-link]").css("color","#a1c628");
	
	jQuery("#subcategory-"+sId).fadeIn("slow");

	LAST_ID = sId;

}
