<<<<<<< .mine
$().ready(function(){
	//	Attach externals
	$('.external').attr('target', '_blank');	
	
	startList('languagelist');
});

function contactCountryChanged()
{
	var CountrySelect = document.getElementById('NewContactForm_row5_country');
	var index = CountrySelect.selectedIndex;
	if(CountrySelect.options[index].value == 'United States - RFI')
	{
		var CanadaStateRow = document.getElementById('StateCanadaContactRow'); //get the canada state row
		var StateRow = document.getElementById('StateContactRow'); //get the us state row
		var CityRow = document.getElementById('CityContactRow'); //get the city row
		var CountyRow = document.getElementById('CountyContactRow'); //get the county row
		
		//hide canada, show us
		CanadaStateRow.style.display = 'none';
		CountyRow.style.display = 'none';
		StateRow.style.display = 'block';
		CityRow.style.display = 'block';
	}
	else if(CountrySelect.options[index].value == 'Canada - RFI')
	{
		var CanadaStateRow = document.getElementById('StateCanadaContactRow'); //get the canada state row
		var StateRow = document.getElementById('StateContactRow'); //get the us state row
		var CityRow = document.getElementById('CityContactRow'); //get the city row
		var CountyRow = document.getElementById('CountyContactRow'); //get the county row
		
		//hide us, show canada
		StateRow.style.display = 'none';
		CountyRow.style.display = 'none';
		CanadaStateRow.style.display = 'block';
		CityRow.style.display = 'block';
	}
	else if(CountrySelect.options[index].value == 'United Kingdom - RFL')
	{
		var CanadaStateRow = document.getElementById('StateCanadaContactRow'); //get the canada state row
		var StateRow = document.getElementById('StateContactRow'); //get the us state row
		var CityRow = document.getElementById('CityContactRow'); //get the city row
		var CountyRow = document.getElementById('CountyContactRow'); //get the county row
		
		//hide us, show canada
		StateRow.style.display = 'none';
		CanadaStateRow.style.display = 'none';
		CityRow.style.display = 'none';
		CountyRow.style.display = 'block';
	}
	else
	{
		var CanadaStateRow = document.getElementById('StateCanadaContactRow'); //get the canada state row
		var StateRow = document.getElementById('StateContactRow'); //get the us state row
		var CityRow = document.getElementById('CityContactRow'); //get the city row
		var CountyRow = document.getElementById('CountyContactRow'); //get the county row
		
		//hide them all
		StateRow.style.display = 'none';
		CanadaStateRow.style.display = 'none';
		CityRow.style.display = 'none';
		CountyRow.style.display = 'none';
	}
}

function startList(nav) {
  if (document.all&&document.getElementById(nav)) {
    navRoot = document.getElementById(nav);
    for (i=0; i<navRoot.childNodes.length; i++) {
      node = navRoot.childNodes[i];
      if (node.nodeName=="LI") {
        node.onmouseover=function() {
          this.className+=" over";
          this.style.zIndex=200;
        }
        node.onmouseout=function() {
          this.className=this.className.replace(" over", "");
          this.style.zIndex=0;
        }
      }
    }
  }
=======
$().ready(function(){
	//	Attach externals
	$('.external').attr('target', '_blank');	
	
	startList('languagelist');
});

function contactCountryChanged()
{
	var CountrySelect = document.getElementById('NewContactForm_row5_country');
	var index = CountrySelect.selectedIndex;
	if(CountrySelect.options[index].value == 'United States - RFI')
	{
		var CanadaStateRow = document.getElementById('StateCanadaContactRow'); //get the canada state row
		var StateRow = document.getElementById('StateContactRow'); //get the us state row
		var CityRow = document.getElementById('CityContactRow'); //get the city row
		var CountyRow = document.getElementById('CountyContactRow'); //get the county row
		
		//hide canada, show us
		CanadaStateRow.style.display = 'none';
		CountyRow.style.display = 'none';
		StateRow.style.display = 'block';
		CityRow.style.display = 'block';
	}
	else if(CountrySelect.options[index].value == 'Canada - RFI')
	{
		var CanadaStateRow = document.getElementById('StateCanadaContactRow'); //get the canada state row
		var StateRow = document.getElementById('StateContactRow'); //get the us state row
		var CityRow = document.getElementById('CityContactRow'); //get the city row
		var CountyRow = document.getElementById('CountyContactRow'); //get the county row
		
		//hide us, show canada
		StateRow.style.display = 'none';
		CountyRow.style.display = 'none';
		CanadaStateRow.style.display = 'block';
		CityRow.style.display = 'block';
	}
	else if(CountrySelect.options[index].value == 'United Kingdom - RFL')
	{
		var CanadaStateRow = document.getElementById('StateCanadaContactRow'); //get the canada state row
		var StateRow = document.getElementById('StateContactRow'); //get the us state row
		var CityRow = document.getElementById('CityContactRow'); //get the city row
		var CountyRow = document.getElementById('CountyContactRow'); //get the county row
		
		//hide us, show canada
		StateRow.style.display = 'none';
		CanadaStateRow.style.display = 'none';
		CityRow.style.display = 'none';
		CountyRow.style.display = 'block';
	}
	else
	{
		var CanadaStateRow = document.getElementById('StateCanadaContactRow'); //get the canada state row
		var StateRow = document.getElementById('StateContactRow'); //get the us state row
		var CityRow = document.getElementById('CityContactRow'); //get the city row
		var CountyRow = document.getElementById('CountyContactRow'); //get the county row
		
		//hide them all
		StateRow.style.display = 'none';
		CanadaStateRow.style.display = 'none';
		CityRow.style.display = 'none';
		CountyRow.style.display = 'none';
	}
}

function startList(nav) {
  if (document.all&&document.getElementById(nav)) {
    navRoot = document.getElementById(nav);
    for (i=0; i<navRoot.childNodes.length; i++) {
      node = navRoot.childNodes[i];
      if (node.nodeName=="LI") {
        node.onmouseover=function() {
          this.className+=" over";
          this.style.zIndex=200;
        }
        node.onmouseout=function() {
          this.className=this.className.replace(" over", "");
          this.style.zIndex=0;
        }
      }
    }
  }
>>>>>>> .r6360
}
