﻿
$(document).ready(function(){
	$("#leftcopy ul").hide();
	$("h3").hover(function(){$(this).css({"text-decoration":"underline"})}, function(){$(this).css({"text-decoration":"none"})});
	//$('<img src="arrow-down.png" class="arrow" />').insertAfter('h3'); 				   
	$("h3").click(function(){
	
		if($(this).is(".active")) {
         $(this).toggleClass("active");
		// $('.arrow.active').attr('src','arrow-down.png'); // change the image src of the current ACTIVE image to have an INACTIVE state.
         $(this).next("ul").slideToggle();
         return false;
		} else {
			$("#leftcopy ul").slideUp("slow"); // close all visible divs with the class of .content
			$("h3.active").removeClass("active");  // remove the class active from all h1's with the class of .active
			$(this).toggleClass("active");
			//$('.arrow.active').attr('src','arrow-down.png'); // change the image src of the current ACTIVE image to have an INACTIVE state.
			$(".arrow").addClass('active');
			//$(this).siblings('.arrow.active').attr('src','arrow-up.png'); // change the image src of the new active image to have an active state.
			$(this).next("ul").slideToggle();
			return false;
		}
	});
});