$(function(){

// List float Clear
  $(".thumbListBase01 li:nth-child(odd)").addClass("even");
  $(".productListBase01 li:nth-child(odd)").addClass("even");
  $(".industryListBase01 li:nth-child(odd)").addClass("even");
  $(".trainingListBase01 li:nth-child(odd)").addClass("even");

// firstChild
  $(".tabContents > *:first-child").addClass("firstChild");
  $(".productTxtBox > *:first-child").addClass("firstChild");
  $(".threeColumnListBase01 > *:first-child").addClass("firstChild");
  $(".photoBox > *:first-child").addClass("firstChild");
  $(".txtBox > *:first-child").addClass("firstChild");

// lastChild
  $(".threeColumnListBase01 > *:last-child").addClass("lastChild");

});


