// JavaScript Document

function Browser() {

	if(document.all) {

		//IE

	//	alert("IE");

		return "IE";

		}

	else {

		//FF

	//	alert("FF");

		return "FF";

	}

}

function validaIE(){

	if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;

 		var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number

		return ieversion;

		}

	return false;

	}

//ao site ser carregado

function onload(){

	versao =validaIE() ;

	if(Browser()=="IE" && versao=="6"){

		var ANS1 =  document.getElementById("ANS1");

		var ANS2 =  document.getElementById("ANS2");

		var menu_texto =  document.getElementById("menu_texto");

		ANS1.style.marginLeft="8px";

		ANS2.style.marginLeft="8px";

		}

	}