// init.js Orangegas

function tableReset(init){
	if (init == 1)
	{
		ts = document.getElementsByTagName("table");
		for (i=0; i<ts.length; i++)
		{
			ts[i].border = 0;
			ts[i].cellSpacing = 0;
			ts[i].cellPadding = 0;
		}
	}
}

function mainmenuOverflowIE6(){
	target = document.getElementById("mainmenu");
	if (BrowserDetect)
	{
		if (BrowserDetect.browser == "Explorer" && BrowserDetect.version == "6" )
		{
			target.style.height = "30px";
		}
	}
}

function contactInptIE6(){
	target = document.getElementById("orangegasForm").getElementsByTagName("input");
	if (BrowserDetect)
	{
		if (BrowserDetect.browser == "Explorer" && BrowserDetect.version == "6" )
		{
			for (i=0; i<target.length; i++)
			{
				if (target[i].type == "text")
				{
					target[i].style.border="1px solid #aaa";
					target[i].style.fontSize="11px";
					target[i].style.color="#666";
					target[i].style.width="155px";
				}
			}
		}
	}
}


function init(){
tableReset(1);
//mainmenuOverflowIE6();
//contactInptIE6();
}

window.onload = init;


