$(document).ready(function() {
	$.getJSON(
		"/store/category-list/get-active-categories?ajax",
		{},
		function(result) {
			if(result.success == true) {
				drawPopupCategory(result.data.store_categories);				
			} else {
				return false;
			}
		}
	);
});

function drawPopupCategory(categ_list) {
	var ul = $('#ShopJewelry ul');
	ul.empty();
	$.each(categ_list, function(i){
		ul.append('<li><a href="/store/' + categ_list[i].store_uri.uri + '/">' + categ_list[i].store_category.name + '</a></li>');
	});
	if($.browser.mozilla){
		$("*", ul).focus(function(){
			blur();
    	});
	}
}

function drawFlatCategory(categ_list) {
	var ul = $('#ProductMenu');
	ul.empty();
	$.each(categ_list, function(i){
		ul.append('<li><a href="/store/' + categ_list[i].store_uri.uri + '/">' + categ_list[i].store_category.name + '</a></li>');
	});
	if($.browser.mozilla){
		$("*", ul).focus(function(){
			blur();
    	});
	}
}
