// $(document).ready(function() {
  // $('#optionSize').hide();

  // $('a#showoptionSize').click(function() {
    // $('#optionSize').show('slow');
	// $('.optionArrowCollapsedSize').addClass('optionArrowExpanded');
	// $('.showOptionSize').addClass('a#hide1optionSize');
    // return false;
  // });

  // $('a#hide1optionSize').click(function() {
    // $('#optionSize').hide('fast');
    // return false;
  // });
// });

$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  jQuery('#retailcontainer').show();
  jQuery('#onlineretailcontainer').show();
  jQuery('#distributorscontainer').show();
  jQuery('#resellercontainer').show();

 // toggles the slickbox on clicking the noted link
  jQuery('a#showretailers').click(function() {
  jQuery('#retailcontainer').toggle(400);
  jQuery('.arrowInactiveretailers').toggleClass('arrowActiveretailers', 400);

 return false;
  });
  
   // toggles the slickbox on clicking the noted link
  jQuery('a#showreseller').click(function() {
  jQuery('#resellercontainer').toggle(400);
  jQuery('.arrowInactiveresellers').toggleClass('arrowactiveresellers', 400);

 return false;
  });
  
     // toggles the slickbox on clicking the noted link
  jQuery('a#showdistributor').click(function() {
  jQuery('#distributorscontainer').toggle(400);
  jQuery('.arrowInactivedistributor').toggleClass('arrowactivedistributor', 400);

 return false;
  });
  
     // toggles the slickbox on clicking the noted link
  jQuery('a#showonline').click(function() {
  jQuery('#onlineretailcontainer').toggle(400);
  jQuery('.arrowInactiveonline').toggleClass('arrowactiveonline', 400);

 return false;
  });
});
