<!--
function changePage(url)
{
  window.location.href = url;
}

function switchContent(objID, liObjID)
{
  liObjID = liObjID || '';
  if (liObjID != '') liObj = document.getElementById(liObjID);
  var obj = document.getElementById(objID);
  
  if (obj)
  {
  	if (obj.style.visibility == "hidden")
  	{
  		// show
  		obj.style.visibility = "visible";
  		obj.style.overflow = "visible";
  		obj.style.paddingTop = "10px";
  		obj.style.paddingBottom = "20px";
  		obj.style.height = "";
  		
  		if (liObj) liObj.style.listStyle = "url('images/16minus.gif') square";
  	}
  	else
  	{
  		// hide
  		obj.style.visibility = "hidden";
  		obj.style.overflow = "hidden";
  		obj.style.height = "0px";
  		obj.style.paddingTop = "0px";
  		obj.style.paddingBottom = "0px";
  		
  		if (liObj) liObj.style.listStyle = "url('images/15plus.gif') square";
  	}
  }
}

function MM_preloadImages() { //v3.0

 var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();

   var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)

   if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}

}

function switchSite(){
	
	if (document.getElementById('language').value == 'es'){
		window.location.href = "http://usmarketgroup.com/es/";
	}else{
		window.location.href = "http://usmarketgroup.com/";
	}
		
}
-->

