
        $(document).ready(function(){
            $(".toggle").click(function(){
        	    $("#locationSlide").slideToggle("slow");
				$(this).toggleClass("active"); return false;
            });
        });

		function goToByScroll(id){
     		$('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
		}
