/**
 * @author sethlowell
 */
$(document).ready(function() {
 
	//ACCORDION BUTTON ACTION	
	$('div.accordionButton').click(function() {
		$('div.accordionContent').slideUp('normal');	
		$(this).next().slideDown('normal');
	});
 
	$(".accordionButton").click(function(event){
		  window.location.hash=this.hash;
	 });	
 
});
