$(document).ready(function(){
var base_path = '/';
var links_servicios = ['habitaciones_hotel el dorado.php', 'restaurante_hotel en pasto.php', 'habitaciones_hotel el dorado.php', 'restaurante_hotel en pasto.php', 'habitaciones_hotel el dorado.php', 'otros servicios_hotel el dorado.php'];
$('.navegacion .txt').each(function(i){
var bg = $('.navegacion .img').eq(i);
$(this).mouseover(function(){
$(this).fadeTo("slow", 1); 
bg.fadeTo("slow", 0.3);
});
$(this).mouseout(function(){
$(this).fadeTo("slow", 0);
bg.fadeTo("slow", 1);
});
$(this).click(function(){ location.href = base_path + links_servicios[i];	});
});
});

