// カテゴリ別クラス定義

function category() {
	var	top = document.getElementById("top");//container取得
	
	// 2.カテゴリ別スタイル指定 
	if (cat=="お知らせ") { 
		top.className='info';//categoryクラス設定
	} 
//	else if (cat=="マリッジリング") { 
//		top.className='cat1';
//	} 
	else if (cat=="オーダーエンゲージリング") { 
		top.className='cat2';
	} 
	else if (cat=="お客様の声") { 
		top.className='cat3';
	} 
	else if (cat=="オーダーの流れ") { 
		top.className='cat4';
	} 
	else if (cat=="フォルムポッシュについて") { 
		top.className='cat5';
	} 
	else if (cat=="技法と素材") { 
		top.className='cat6';
	} 
	else {
		top.className='nocat';
	} 
}
