$(function(){
  // Homepage banner slideshow
  var banner = $('#banner');
  if($(banner).length > 0){
    $.getJSON('/home/photos', function(result){
      $(banner).slideshow({ data: result });    
    });
  }
  
  // Lightboxes on property detail page
  $('.properties#show .image a').lightBox();
  
  // Fix IE6's hover impotence
  if($.browser.msie && parseInt($.browser.version) <= 6){
    $('#header .navigation li')
      .mouseover(function(){
        $(this).children('ul').show();
      })
      .mouseout(function(){
        $(this).children('ul').hide();
      })
  }
});