function navigation_background(obj, type){
	if(type == 1){
		obj.style.backgroundColor = '';
		obj.style.border = '';
	}
	if(type == 2){
		obj.style.backgroundColor = '#C0C6D1';
		obj.style.border = '1px solid #FFFFFF';
	}
}

function sub_cata(obj, type){
	if(type == 1){
		obj.style.backgroundColor = '#FEFACB';
		obj.style.border = '1px solid #FCEB14';
	}
	if(type == 2){
		obj.style.backgroundColor = '#FFFEF0';
		obj.style.border = '1px solid #FCEB14';
	}
}

function prodct(obj, type){
	if(type == 1){
		obj.style.backgroundColor = '#F2F5F9';
	}
	if(type == 2){
		obj.style.backgroundColor = '#F7F9FB';
	}
}