$(document).ready(function(){
  $.fn.preload = function(){
    this.each(function(){
      $('<img/>')[0].src = this;
    });
  }
  
  $(['http://loyalrealty.com/wp-content/themes/loyalrealty/style/images/cityscape0.png',
     'http://loyalrealty.com/wp-content/themes/loyalrealty/style/images/cityscape1.png',
     'http://loyalrealty.com/wp-content/themes/loyalrealty/style/images/cityscape2.png',
     'http://loyalrealty.com/wp-content/themes/loyalrealty/style/images/cityscape3.png']).preload();

  var number = Math.floor(Math.random()*4)

  $('#picture img').attr('src', 'http://loyalrealty.com/wp-content/themes/loyalrealty/style/images/cityscape' + number + '.png');  

  $('a.team-member').click(function(){
    member_name = $(this).text().toLowerCase().replace(/[ ]/g, '').replace(',', '-');

    $('#no-bio').hide();
    $('.bio').hide();
  
    if($('#' + member_name).length){
      $('#' + member_name).fadeIn();
    } else {
      $('#no-bio').fadeIn();
    }

    return false;
  });  
});
