function language(){
	var cadena=location.pathname;
	
	switch(cadena){
		case "/":location.href="index_en.php";break;
		case "":location.href="index_en.php";break;
		case "/index.php":location.href="index_en.php";break;
		case "/quienes-somos.php":location.href="who-we-are.php";break;
		case "/como-trabajamos.php":location.href="how-we-work.php";break;
		case "/diseno.php":location.href="design.php";break;
		case "/materiales.php":location.href="materials.php";break;
		case "/tejidos.php":location.href="textures.php";break;
		case "/cojines.php":location.href="cushions.php";break;
		case "/acabados.php":location.href="finishes.php";break;
		case "/colecciones.php":location.href="collections.php";break;
		case "/int-coleccion.php":location.href="collections.php";break;	
		case "/detalle-coleccion.php":location.href="collections.php";break;	
		case "/publicaciones.php":location.href="publications.php";break;
		case "/ferias-eventos.php":location.href="fairs-events.php";break;
		case "/detalle-ferias-eventos.php":location.href="fairs-events.php";break;
		case "/contactar.php":location.href="contact.php";break;
		
		case "/index_en.php":location.href="index.php";break;
		case "/who-we-are.php":location.href="quienes-somos.php";break;
		case "/how-we-work.php":location.href="como-trabajamos.php";break;
		case "/design.php":location.href="diseno.php";break;
		case "/materials.php":location.href="materiales.php";break;
		case "/textures.php":location.href="tejidos.php";break;
		case "/cushions.php":location.href="cojines.php";break;
		case "/finishes.php":location.href="acabados.php";break;
		case "/collections.php":location.href="colecciones.php";break;
		case "/int-collection.php":location.href="colecciones.php";break;	
		case "/detail-collection.php":location.href="colecciones.php";break;	
		case "/publications.php":location.href="publicaciones.php";break;
		case "/fairs-events.php":location.href="ferias-eventos.php";break;
		case "/detail-fairs-events.php":location.href="ferias-eventos.php";break;
		case "/contact.php":location.href="contactar.php";break;
	}
}
function change_image(ruta,id){
		document.images["foto"].src=ruta+id;
}
function changeBanner(selector) {
    var totalItems = $(selector+' > *').length;
    var totalVisibleItems = $(selector+' > *:visible').length;
    var currentIndex, nextIndex;

    if(totalItems > 1 && totalVisibleItems > 1) {
        $(selector).css('position', 'relative');
        $(selector+' > *').each(function() {
            $(this).hide();
            $(this).css('position', 'absolute');
            $(this).css('top', 0);
	});
        totalVisibleItems = $(selector+' > *:visible').length;
    }

    if(totalVisibleItems <= 1 && totalItems > 0) {
        currentIndex = $(selector+' > *').index($(selector+' > *:visible')) ;
        nextIndex = (currentIndex >= 0 && currentIndex+1 < totalItems) ? currentIndex+1 : 0;
        if(currentIndex >= 0)
            $(selector+' > *').eq(currentIndex).fadeOut('slow');
        $(selector+' > *').eq(nextIndex).fadeIn('slow');
    }
}
