// JavaScript Document

$(document).ready(function(){
	if(window.location.href.indexOf('_es')!=-1)
		idioma = "_es.html";
	else
		idioma = ".html";
	
	$.ajax({
			type: "GET",
			url: "menu" + idioma,
			async: true,
			cache: false,
			success: function(msg)
			{
				$("#menu").html(msg);
			}
		});
		$.ajax({
			type: "GET",
			url: "cabezal"+ idioma,
			async: true,
			cache: false,
			success: function(msg)
			{
				$("#cabezal").html(msg);
			}
		});
		$.ajax({
			type: "GET",
			url: "pie" + idioma,
			async: true,
			cache: false,
			success: function(msg)
			{
				$("#pie").html(msg);
			}
		});
});

function changeLang(newlang)
{
	var actualurl = window.location.href;
	
	if(newlang=="ES") //paso a espanol
		idioma = "_es.html";
	else
		idioma = ".html";
	var pos = actualurl.indexOf('_es.html');
	if(pos==-1)
		pos = actualurl.indexOf('.html');
	if(pos==-1)	
	{
		pos = actualurl.indexOf('_es.php');
		if(pos==-1)
		{
			pos = actualurl.indexOf('.php');
			if(pos==-1)
				var newurl = actualurl + "index_es.php";
			else
			{
				idioma = "_es.php";
				var newurl = actualurl.substr(0,pos);
				newurl += idioma;	
			}
		}
		else
		{
			idioma = ".php";
			var newurl = actualurl.substr(0,pos);
			newurl += idioma;
		}
	}
	else
	{
		var newurl = actualurl.substr(0,pos);
		newurl += idioma;
	}
	window.location.href = newurl;
}

