﻿$(document).ready(function () {

    //Mouse Click for toggle Display
    $('.hdr').click(function (e) {

       //prevent Click link action
       e.preventDefault();
		
		var linkURL = $(this).parent().attr('title')
        $('#' + linkURL).slideToggle(500);
		
		
		//change styles based on status
		if ($(this).parent().hasClass('active') == false){
			$(this).parent().css('background-color', '#e6e8f0');
			$(this).parent().css('font-weight', 'bold');
			$(this).parent().addClass('active');
		}else{
			$(this).parent().removeClass('active');
			//$(this).css('background-color', '#ffffff');
			
			//Change Color
			var storeRef = $(this).parent()
			setTimeout( function(){
				storeRef.css('background-color', '#ffffff');
			},500);

			$(this).parent().css('font-weight', 'normal');
		}
	
    });

});


