$('html').addClass('js'); // fixes the flash of unstyled content in header


$(document).ready(function() {
  $("img#changeout-images1").hide();
  $("img#changeout-images2").hide();
  $("#content-wrapper-home #subnav-col img#changeout-image-large").hide();
  
  $('table tbody tr:nth-child(odd)').addClass('odd');
  $('table tbody tr:nth-child(even)').addClass('even');
  
  $(".description-text").hide();
  $("p.description-link").click(function(){
		$(this).next(".description-text").slideToggle("slow");
		return false;
	});
  
});
