jQuery(document).ready(function($) {
  $('ul.nav ul').hover(
  	function() {
	  $(this).siblings().addClass('hover');
  	},
	function() {
		$(this).siblings().removeClass('hover');
	}
  );
  
 /* $('#respond form').hide();
  $('#respond').addClass('hiddenForm');
  
  $('#respond, a.comment-reply-link').click(function() {
	  	$this = $('#respond');
		$this.removeClass('hiddenForm');
		$this.find('form').slideDown();	  
  });*/


});
