$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#brandtuning').hide();
 
 // shows the slickbox on clicking the noted link 
  $('a#bt-show').click(function() {
    $('#brandtuning').slideDown('slow');
    $('a#bt-show').hide('fast');
    $('#btsummary').fadeOut('slow');
    return false;
  });
 
 // hides the slickbox on clicking the noted link 
  $('a#bt-hide').click(function() {
    $('#brandtuning').hide('slow');
    $('a#bt-show').fadeIn('slow');
    $('#btsummary').fadeIn('slow');
   	return false;
  });
 
  // toggles the slickbox on clicking the noted link 
  $('a#bt-all').click(function() {
    $('#brandtuning').toggle(400);
    return false;
  });
 
});


$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#brandbalancing').hide();
 
 // shows the slickbox on clicking the noted link 
  $('a#bb-show').click(function() {
    $('#brandbalancing').slideDown('slow');
    $('a#bb-show').hide('fast');
    $('#bbsummary').fadeOut('slow');
    return false;
  });
 
 // hides the slickbox on clicking the noted link 
  $('a#bb-hide').click(function() {
    $('#brandbalancing').hide('slow');
    $('a#bb-show').fadeIn('slow');
    $('#bbsummary').fadeIn('slow');
   	return false;
  });
 
  // toggles the slickbox on clicking the noted link 
  $('a#bb-all').click(function() {
    $('#brandbalancing').toggle(400);
    return false;
  });
 
});


$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#brandharmony').hide();
 
 // shows the slickbox on clicking the noted link 
  $('a#bh-show').click(function() {
    $('#brandharmony').slideDown('slow');
    $('a#bh-show').hide('fast');
    $('#bhsummary').fadeOut('slow');
    return false;
  });
 
 // hides the slickbox on clicking the noted link 
  $('a#bh-hide').click(function() {
    $('#brandharmony').hide('slow');
    $('a#bh-show').fadeIn('slow');
    $('#bhsummary').fadeIn('slow');
   	return false;
  });
 
  // toggles the slickbox on clicking the noted link 
  $('a#bh-all').click(function() {
    $('#brandharmony').toggle(400);
    return false;
  });
 
});



