
$('li.ourListings').bind({
 
 mouseenter: function(){
$('li.ourListings > .ourTowns ').fadeIn(300);  
}, 
mouseleave: function() {
$('li.ourListings > .ourTowns ').hide();

}
});





  // add reduced banner to class reduced
  $( 'div.reduced').each(function(){
  $(this).prepend('<img src="images/reduced-banner.png" width="80"  border="0" alt="" class="reduced"> ');
  
  });















