$(document).ready(function() {					   

// Accordion

	$('div.drophide').hide();
	$('h3 a').click(function(){
	if($(this).hasClass('active')) { // check if link clicked has class of current
	$(this).removeClass('active'); // if active set to inactive
	$(this).parent().next('div.drophide').toggle('slow'); // toggle div
	return false;
	} else {
	$('div.drophide:visible').toggle('slow'); // close all visible divs
	$('h3 a').removeClass('active'); // remove the class current from all links
	$(this).toggleClass('active');
	$(this).parent().next('div.drophide').toggle('slow'); // toggle div
	return false;
		}

	});
	
		});
