//Game categorys
//Accordion

  $(document).ready(function(){
	$(".acc-content").hide();
	// $('<img src="../images/acc-arrow-down.png" class="acc-arrow" />').insertAfter('a h2.index-page'); 				   
	$("a h2.index-pagea").click(function(){
		if($(this).is(".active")) {
         $(this).toggleClass("active");
		// $('.acc-arrow.active').attr('src','../images/acc-arrow-down.png'); // change the image src of the current ACTIVE image to have an INACTIVE state.
         $(this).parent().next(".acc-content").slideToggle();
         return false;
		} else {
			$(".acc-content:visible").slideUp("slow"); // close all visible divs with the class of .content
			$("h2.index-page.active").removeClass("active");  // remove the class active from all h1's with the class of .active
			$(this).toggleClass("active");
			// $('.acc-arrow.active').attr('src','../images/acc-arrow-down.png'); // change the image src of the current ACTIVE image to have an INACTIVE state.
			// $(".acc-arrow").addClass('active');
			// $(this).siblings('.acc-arrow.active').attr('src','../images/acc-arrow-up.png'); // change the image src of the new active image to have an active state.
			$(this).parent().next(".acc-content").slideToggle();
			return false;
		}
	});
});


