$('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").each(
  function (stripey) {
  if ($(this).is(".plain")) {
    }
  else {
    $(this).find('tr:nth-child(odd)').addClass('odd');
    $(this).find('tr:nth-child(even)').addClass('even');
    }
  })
  
  $(".description-text").hide();
  $("p.description-link").click(function(){
		$(this).next(".description-text").slideToggle("slow");
		return false;
	});
  $("p.description-link-show").click(function(){
		$(this).next(".description-text").slideToggle("slow");
		return false;
	});

  $(".description-showall").click(function(){
		$(".description-text").show("slow");
		return false;
	});

  $(".description-hideall").click(function(){
		$(".description-text").hide("slow");
		return false;
	});

});

