$(document).ready(function(){
  $('.comments div').hide();
	
	$('.comments h3').click(function() {
		$(this).siblings('div').slideUp('slow');
		$(this).next('div').toggle();
		if ( $(this).next('div').is(':visible')){
			$(this).removeClass('h3_right_arrow');
			$(this).addClass('h3_down_arrow');
		} else {
			$(this).addClass('h3_right_arrow');
			$(this).removeClass('h3_down_arrow');
		}  
	});
	
	$('.comments h3').hover(
		function() {
			$(this).stop().addClass('h3_hover');
			//$(this).animate({'background-color': '#1F4A5F', 'color': '#eee'}, 300);
		},
		function() {
			$(this).stop().removeClass('h3_hover');
			//$(this).animate({'background-color': '#F1ECDC', 'color': '#936C33'}, 300);
		}
	);
	
	
	
});
