$(document).ready(function() {
  //button rollovers
  $('div.buttons').find('img').mouseover(function() {
     $(this).data('original_src', $(this).attr('src'));
     if ($(this).attr('src').indexOf('/off/') > 0) {
       $(this).attr('src', $(this).attr('src').replace('/off/','/on/'));
     }
  }).mouseout(function() {
    $(this).attr('src', $(this).data('original_src'));
  });  
  
  //open the drawer
   $('div.drawer_handle').trigger('click');
});

