/********************************************************************
 * compare-chart-enhancer.js
 *
 * Enhance compare carts by striping rows and toggling tables.
 *******************************************************************/   

$(document).ready( function(){
 stripeRows();
 applyMouseEvents();
});

function stripeRows(){
 $("table tr:nth-child(odd)").addClass('odd').not('.section-header .list-all');
}

function applyMouseEvents(){
 $(".toggle-technical-compare").hover( function(){ $(this).css({color:'#ffffff'}); }, function(){ $(this).css( {color:'#e9ffc7'}) });
 $(".toggle-technical-compare").click( function(){ 
  if($('.technical-compare-container').is(':visible')){
   $('.technical-compare-container').slideUp('slow');
   $('.toggle-technical-compare').html('Show Technical Details');
  }else{
   $('.technical-compare-container').slideDown('slow')
   $('.toggle-technical-compare').html('Hide Technical Details');
  }
 });
}

