// JavaScript Document
function getById(id){
	return document.getElementById(id);
}

function getElementsByName_iefix(tag, name) {
     var elem = document.getElementsByTagName(tag);
     var arr = new Array();
     for(i = 0,iarr = 0; i < elem.length; i++) {
          att = elem[i].getAttribute("name");
          if(att == name) {
               arr[iarr] = elem[i];
               iarr++;
          }
     }
     return arr;
}

function openPage(url){
	location.href = url;
}

function tradeMenuPosOver(id){
	getById('block_'+id).childNodes[0].childNodes[0].style.backgroundColor = '#2267FF';
	getById('block_'+id).childNodes[0].childNodes[1].style.textDecoration = 'underline';
	getById('block_'+id).childNodes[0].childNodes[1].style.color = '#7298E1';
}

function tradeMenuPosOut(id){
	getById('block_'+id).childNodes[0].childNodes[0].style.backgroundColor = '#8CAFFB';
	getById('block_'+id).childNodes[0].childNodes[1].style.textDecoration = 'none';
	getById('block_'+id).childNodes[0].childNodes[1].style.color = '#000000';
}
