// JavaScript Document



if(document.getElementsByTagName){

top.leftFrame.document.getElementById('menu').style.backgroundColor =document.bgColor;

	for(i=0;i< top.leftFrame.document.getElementsByTagName('div').length;i++){

	top.leftFrame.document.getElementsByTagName('div')[i].style.backgroundColor =document.bgColor;

	}

}

else if(document.all){

top.leftFrame.document.all['menu'].style.backgroundColor =document.bgColor;

	for(i in top.leftFrame.document.all){

	//alert(i+'='+top.leftFrame.document.all[i].tagName)

		if(top.leftFrame.document.all[i].tagName == 'DIV'){

		top.leftFrame.document.all[i].style.backgroundColor =document.bgColor;

		}

	}

}

else if(document.layers){

top.leftFrame.document.bgColor = document.bgColor;

//alert(	top.leftFrame.document.layers.length)

	for(i=0; i< top.leftFrame.document.layers.length;i++){

	top.leftFrame.document.layers[i].document.bgColor =document.bgColor;

	//+top.leftFrame.document[i].tagName)

		//top.leftFrame.document[i].backgroundColor =document.bgColor;

		//top.leftFrame.document.all[i].style.backgroundColor =document.bgColor;

		

	}

}