/**
 * Eric Gonzalez
 * Language switch
 */

function jmp() {
a_url=document.location.href;
var is_site1=a_url.indexOf('/es/');
var is_site2=a_url.indexOf('/en/');
if (is_site2>0)
 {
  document.location.href = a_url.replace("en","es") ;
 }
else
{
  if (is_site1>0)
  {
     document.location.href = a_url.replace("es","en") ;
  }
  else
  {
     document.location.href = '/';
  }
}
}




