﻿/*
=======================================================================================
 HOTELES RH                                                     Site produced by KOALAB        
 Copyright 2007                                                   http://www.koalab.com
=======================================================================================
*/
$(document).ready(function(){
      // Evento hover para los enlaces superiores de experiencias
      $(".background-title li a").hover(function () {
        $('#'+$(this).parent("li").attr("id")+'Emergent').css("display","block");
        }, function () {
        $('#'+$(this).parent("li").attr("id")+'Emergent').css("display","none");
      });
});