$(document).ready(function()
{
	$.each($("#tpl_catalog_panel>ul>li"), function(idx, item){ $(item).css("z-index", 1000 - idx); });
	$("#tpl_catalog_panel li").hover(
		function(){
			$(this).children("ul").css("display", "block"); 
			$(this).addClass("hovered");								
		}, 
		function(){
			$(this).children("ul").css("display", "none"); 
			$(this).removeClass("hovered");								
		}
	).bind(
		"click", 
		function(e){ 
			e.stopPropagation();
			window.location.href = $(this).children("a").attr("href");
			return false; 
		}
	).css("cursor", "pointer"); 
});
