/**
 * Ajax
 */
/*<![CDATA[*/
function XMLHttp(){
var Object;
if (typeof XMLHttpRequest == "undefined" )
{
if(navigator.userAgent.indexOf('MSIE 5') >= 0)
{ Object= new ActiveXObject("Microsoft.XMLHTTP");}
else
{ Object=new ActiveXObject("Msxml2.XMLHTTP");}
}
else
{ Object=new XMLHttpRequest();}
return Object;
}

var ajax=XMLHttp();

function _Ajax(product,lang)
{
var product = product;

ajax.open("GET","http://www.cazcarra.com/lib/ajax__home.php?product="+product+"&id_lang="+lang,true);

ajax.onreadystatechange=function(){
if(ajax.readyState==4)
{
var respuesta=ajax.responseText;
document.getElementById('banner_home_resultado').innerHTML=respuesta;

$("DIV#banner_home").removeClass("visible").addClass("oculto");
$("DIV#banner_home_resultado").removeClass("oculto").addClass("visible");

}
}
ajax.send(null);

}


function moveover(elemento,ruta)
{
	
	if (elemento=="image")
 	{
 		document.getElementById(elemento).src=ruta;
 	}
	else
	{
  		document.getElementById(elemento).src=ruta;
 	}
}
function moveback(elemento,ruta)
{

	if (elemento=="image")
	{
		document.getElementById(elemento).src=ruta;
	}
	else
	{
		document.getElementById(elemento).src=ruta;
	}
}

