$(document).ready(function() {
  $('div.example h3').click(function() {
    $(this).next('div.content').slideToggle('fast');  
  });
  $('div.section h2').click(function() {
    $(this).parent().find('div.content').slideToggle('fast');
  });
});


$(document).ready(function() {
  $('input:submit').toggle(function() {
	var $this = $(this),
    $domtree = $this.parents('div.section').find('div.domtree'),
    query = $this.prev().find('span.querystring').text();
	$domtree.find(query).addClass('highlight')
    .animate({ marginLeft: 10}, 'fast');
  }, function() {
  	var $this = $(this),
      $domtree = $this.parents('div.section').find('div.domtree'),
      query = $this.prev().find('span.querystring').text();
    $domtree.find(query).removeClass('highlight')
    .animate({ marginLeft: 0}, 'fast');
  });
});


