/*
$(document).ready( function()  {     // Desplegables del menu de productos     
$('#slogan_phone .phone a').hover( function() {         $('#slogan_phone .phone ul').show();     },     function(){         $('#slogan_phone .phone ul').hide();     });  });


$(document).ready( function()  {     // Desplegables del menu de productos     
$('#slogan_phone .phone strong').hover( function() {         $('#slogan_phone .phone ul').show();     },     function(){         $('#slogan_phone .phone ul').hide();     });  });

$(document).ready( function()  {     // Desplegables del menu de productos     
$('#slogan_phone .phone div').hover( function() {         $('#slogan_phone .phone ul').hide();     },     function(){         $('#slogan_phone .phone ul').hide();     });  });
*/
$(document).ready( function() 
{
  // Desplegables del menu de productos
  $('#slogan_phone .phone').hover( function() {
    $('#popup').show();
  },
  function(){
    $('#popup').hide();
  });

});

