// BOM Expand and Collapse
$(document).ready(function(){
//$("#bom .description").show();
//$("#bom .bom-header").toggleClass("bom-header-expand");
$("#bom .bom-header").click(function () {
	  $("#bom .description").slideToggle("slow");
	  $(".description").hide();
	  $(this).toggleClass("bom-header-expand");return false;
 });
$("#bom2 .bom-header").click(function () {
	  $("#bom2 .description").slideToggle("slow");
	  $(".description").hide();
	  $(this).toggleClass("bom-header-expand"); return false;
 });
$("#bom3 .bom-header").click(function () {
	  $("#bom3 .description").slideToggle("slow");
	  $(".description").hide();
	  $(this).toggleClass("bom-header-expand"); return false;
 });
$("#bom4 .bom-header").click(function () {
	  $("#bom4 .description").slideToggle("slow");
	  $(".description").hide();
	  $(this).toggleClass("bom-header-expand"); return false;
 });
$("#bom5 .bom-header").click(function () {
	  $("#bom5 .description").slideToggle("slow");
	  $(".description").hide();
	  $(this).toggleClass("bom-header-expand"); return false;
 });
$("#bom6 .bom-header").click(function () {
	  $("#bom6 .description").slideToggle("slow");
	  $(".description").hide();
	  $(this).toggleClass("bom-header-expand"); return false;
 });
$("#bom7 .bom-header").click(function () {
	  $("#bom7 .description").slideToggle("slow");
	  $(".description").hide();
	  $(this).toggleClass("bom-header-expand"); return false;
 });
 $("#bom8 .bom-header").click(function () {
	  $("#bom8 .description").slideToggle("slow");
	  $(".description").hide();
	  $(this).toggleClass("bom-header-expand"); return false;
 });
});
