// Jquery OpenDIV by Derek Moseley, DerekM07@Gmail.com
$(function() {
	$('a.expander').attr('href', 'javascript:void();');
	$('.expander').html('HIDE');
	$('.expander').css('cursor', 'pointer');
	$('.expander').click(function() {
		if (this.innerHTML == 'HIDE')
		{
			$(this).parent().next('.expandable').fadeTo(750, 0.01, function() { $(this).slideUp(1000); });
			$(this).html('SHOW');
		} else {
			$(this).parent().next('.expandable').fadeTo(750, 1.00, function() { $(this).slideDown(1000); });
			$(this).html('HIDE');
		}
		return false;
	});
});
