/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
 $(document).ready(function() {
      $('#toggleButton').click(function() {
               $('#toggleSection').toggle();
               $('#toggleSection2').toggle();
               $('#toggleTireBackground').css({
                    'backgroundImage': 'url(../graphic/wheel_search_image.jpg)',
                    'backgroundRepeat': 'no-repeat',
                    'backgroundPosition': 'bottom 10% '
            });
      });
      $('#toggleButton2').click(function() {
               $('#toggleSection').toggle();
               $('#toggleSection2').toggle();
               $('#toggleTireBackground').css({
                    'backgroundImage': 'url(../graphic/tyresearch.jpg)',
                    'backgroundRepeat': 'no-repeat',
                    'backgroundPosition': 'bottom 10% '
            });
      });
 });
