  jQuery(document).ready(function($){
    $('.date').each(function(){
      var date = $(this).html();
      var a_date = date.split(" - ");
      if (a_date[0] == a_date[1])
        $(this).html(a_date[0]);
      $(this).show();  
    });
  });