$(document).ready(function() { 
   $('#sideBar .menu_hdr').accordion({ 
       autoheight: false 
   });
   
   // second simple accordion with special markup
   $('#storemenu').accordion({
      active: false,
      header: '.menu_hdr',
      autoheight: false,
      navigation: false,
      collapsible: true,
      selectedClass: 'menu_active',
      event: 'click',
      fillSpace: false,
      animated: 'easeslide',
      active: 0
   });

});
//-------------------------------
function change_antibot_image(id) {
	var image = document.getElementById(id);
	if (image) {
		var src = xcart_web_dir + "/antibot_image.php?tmp=" + Math.random() + "&section=" + id + "&regenerate=Y";
		setTimeout(
      function() {
        image.src = src;
      },
			200
		);
	}
}