/* Copyright (c) 2009 Smileweb co., Ltd.  All rights reserved.  www.smileweb.co.kr */

if ( window.addEventListener ){	
	window.addEventListener( "load", LeftAdd, false )			
} else{	
	window.attachEvent( "onload", LeftAdd )			
}

function LeftAdd()
{
	new ajax.xhr.Request("/callcenter/callcenter_transaction/menu_list.php", '', LeftArray, 'POST');	
}

function LeftArray(xmlDoc)
{
	var code = getNodeValue( xmlDoc.getElementsByTagName( 'code' ) );

	if (code == 'success') 
	{
				
		loaddata = eval( "(" + getNodeValue( xmlDoc.getElementsByTagName ( 'data' ) ) + ")" );
		
		if ( loaddata.length > 0 )
		{
			$("fixrow").className = "";
		}
		
		for (var i = loaddata.length-1; i >= 0; i--)
		{
			var divObj = document.getElementById("add");	
			
			if ( i==0 )
			{
				divObj.innerHTML += "<dd class='pd_b20'><a href='/callcenter/bbs.php?bbsKey="+loaddata[i].num+"' title='"+loaddata[i].name+"'>"+loaddata[i].name+"</a></dd>";
			}
			else
			{
				divObj.innerHTML += "<dd><a href='/callcenter/bbs.php?bbsKey="+loaddata[i].num+"' title='"+loaddata[i].name+"'>"+loaddata[i].name+"</a></dd>";
			}
		}
	}	
}



