$(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');
    return false;
  });
 
 // hides the slickbox on clicking the noted link 
  $('a#bt-hide').click(function() {
    $('#brandtuning').slideUp('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)
  $('#brandtuning2').hide();
 
 // shows the slickbox on clicking the noted link 
  $('a#bs-show').click(function() {
    $('#brandtuning2').slideDown('slow');
    return false;
  });
 
 // hides the slickbox on clicking the noted link 
  $('a#bs-hide').click(function() {
    $('#brandtuning2').slideUp('slow');
   	return false;
  });
 
  // toggles the slickbox on clicking the noted link 
  $('a#bs-all').click(function() {
    $('#brandtuning2').toggle(400);
    return false;
  });
 
});

