$(document).ready(function(){

   $('.property-listing:even').addClass('even') ;
   $('.property-listing:last').css('border-bottom','1px #cccccc solid') ;
   
   $('.news-item:even').addClass('news-item-even');
   
   $('#search-property #location').click(function(){
       $(this).val('');
   })
      
   $('.media-image').hover(function(){
       var imageID = $(this).attr('id');
       $('#focused-picture').html('<img src = "/images/propertyPhotos/_processed/'+imageID+'" />');
   })
      
   $('.slide').each(function(){
       var image = $(this).children('.sliderPartImage').text();
       $(this).css('background-image','url('+image+')');
   })
      
})
