$(function(){
  $('#footer label.linkBold').click(function(){  
    $('#footer-legal').css('opacity', 0.9).fadeIn();
  });
  
  $('#footer-close').click(function(){
    $(this).parent().fadeOut();
  });
});

function doDigitFilter(evt)
{
  var newDig = evt.value.replace(/[^0-9 ]+/g,'');  
  return newDig;
}

function doDigitJump(val, idf) { 
  if(val == 2) {
    $('#'+idf).val('').focus();
  }
}

function switchCountry(cValue,loc){
	var today = new Date();
	var expire = new Date();
	var nDays = 30;
	if (nDays==null || nDays==0) nDays=1;
	expire.setTime(today.getTime() + 3600000*24*nDays);
	document.cookie = "Country="+escape(cValue) + ";expires="+expire.toGMTString(); 
	window.location = loc;
}
