/*
function leftnav_category_headings_hook___post_bootstrap(raw_data) {
	if (cat_key === 'decor') {
		// inject a new section heading into the sort order: any arbitrary position we'd like.
		var new_heading = 'Kids Decor';
		var new_heading_position_index  = 'first';
		left_nav.hook_helper___inject_heading_into_sort_order(raw_data, new_heading, new_heading_position_index);
	}
}
*/

function leftnav_category_headings_hook___pre_row_assembly(headings) {
	var heading, new_row, url, description, attributes, depth;

	// ======================================================================== Specialty Shops:
	heading = 'Specialty Shops';
	switch (cat_key){
		case 'baby':
/*
			url = '/CampaignStorage';
			description = "Campaign Storage Shop";
			new_row = left_nav.hook_helper___assemble_row(url, description);
			// prepend link to group
			if (typeof headings[heading] === 'undefined'){
				headings[heading] = [];
			}
			if ( headings[heading].length === 0 ){
				headings[heading].push(new_row);
			}
			else {
				headings[heading].splice(0, 0, new_row);
			}
*/
			break;
		case 'bedding':
			url = '/makeyourbed';
			description = "Make Your Bed";
			new_row = left_nav.hook_helper___assemble_row(url, description);
			// prepend link to group
			if (typeof headings[heading] === 'undefined'){
				headings[heading] = [];
			}
			if ( headings[heading].length === 0 ){
				headings[heading].push(new_row);
			}
			else {
				headings[heading].splice(0, 0, new_row);
			}
			break;
		case 'decor':
			url = '/Block-Print-Shop';
			description = "Block Print Shop";
			new_row = left_nav.hook_helper___assemble_row(url, description);
			// append link to group
			if (typeof headings[heading] === 'undefined'){
				headings[heading] = [];
			}
			headings[heading].push(new_row);
			break;
		default:
			break;
	}

	// ======================================================================== Decor -> Kids Decor:
/*
	if (cat_key === 'decor'){
		heading = 'Kids Decor';

		url = '/For-Kids-Baskets-Bins';
		description = "Baskets &amp; Bins";
		new_row = left_nav.hook_helper___assemble_row(url, description);
		headings[heading].push(new_row);
	}
*/

}

