var ie6 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 6.0") != -1);

$(document).ready(function()
{
    jQuery('.contact-details-container a').click(function(e) {
        jQuery('.contact-details').show();
        e.preventDefault();
    }).mouseout(function() {
        jQuery('.contact-details').delay(200).fadeOut();
    });
  $('.listing-details > .info > .left > ul > li > .tooltip-content').each(function()
  {
    if (jQuery.browser.msie && ie6)
    {
      var a = $(this).prev();
      var tooltip = $(this);
      $(this).slideUp(0);
      $(a).toggle(function()
      {
        tooltip.slideDown(1000);
      }, function()
      {
        tooltip.slideUp(1000);
      });
    }
    else
    {
      var a = $(this).prev();
      $(a).tooltip(
      {
        //position: 'top right',
        //offset: [ -145, -480 ],
        events: {
          def: 'click, mouseout'
        },
        effect: 'fade'
      });
    }
    $(a).click(function(){return false;});
  });
});
