$(document).ready(function(){
    //$(".identityBox2:eq(2)").nextAll().hide();
    //$(".identityBox2:eq(2)").css({borderBottom:'None'});
    $(".commercialSeriesBox> h4").nextAll().hide();
    $(".commercialSeriesBox> .showmemore").show();
    $(".commercialSeriesBox> .showmeless").click(function(){
      $(this).parent().children('h4').nextAll().hide();
      $(this).siblings(".showmemore").slideDown(500);
      return false;
      });
    $(".commercialSeriesBox> .showmemore").click(function(){
      $(this).siblings().not('.testimonial').slideDown(500);
      $(this).hide();
      return false;
      });
    $(".bodyQuote").wrap('<div class="outerQuote"><div class="centerQuote"></div></div>');

    $(".commercialSeriesBox:last-child").css({borderBottom:'None'});    

    $(".extraVotes").children().hide();
    $(".extraVotes> .showmemore").show();
    $(".extraVotes> .showmeless").click(function(){
      $(this).parent().children().hide();
      $(this).siblings(".showmemore").slideDown(500);
      return false;
      });
    $(".extraVotes> .showmemore").click(function(){
      $(this).siblings().slideDown(500);
      $(this).hide();
      return false;
      });
    });
