﻿
        $(document).ready(function () {

			
			//Accordion
			if ($('#accordion').length) {
				//var theUrl = window.location.href;
				//var hashValue = "#" + theUrl.split('#')[1];
		
				$("#accordion div.section").hide();
		
				
				$('#accordion h4').click(function () {
					$(this).next("div.section").width(435);
					$(this).next("div.section").slideToggle("slow").siblings("div.section:visible").slideUp("slow");
					$(this).toggleClass("active");
					$(this).siblings("h4").removeClass("active");
	
					return false;
				});
			}


        });
	
