/*---------------------------------------------------------------------------------------------------------*/
// #  »çÀÌµå¸Þ´º (¼û±è/ÆîÄ§) ¼³Á¤
/*---------------------------------------------------------------------------------------------------------*/

function subBlock(id) {

	//if (previd != null) {
	//	if (previd != id) {
	//		document.getElementById(previd).style.display = 'none';
	//	}
	//}

	if (document.getElementById(id).style.display == 'none') {
		for (i=1;i <= 8; i++){
			document.getElementById("subMenu0"+i).style.display = 'none';
		}
		document.getElementById(id).style.display = 'block';
	} else {
		document.getElementById(id).style.display = 'none';
	}
	previd = id;
}

		function pop_account()
		{
			 window.open('/shop/account.html','_blank','width=310 height=255 top=10 left=10'); 
		}


function menu_up(menuId)
{
	if( document.getElementById ( menuId ) != null )
	{
	menu = document.getElementById(menuId) ;
	menu.style.background = "#C8FF35" ;
	//menu.style.cursor = 'hand' ;
	}
}

function menu_out(menuId)
{
	if( document.getElementById ( menuId ) != null )
	{
		menu = document.getElementById( menuId ) ;
		menu.style.background = "#D8DCE0" ;
	}
}