// Main JS for Adam Stemple.com

$('html').addClass('js');

//Sliding Content
$(document).ready(function () {

$('.hider').hide();
$('h2').bind
	('click',
		function(){
			$(this).addClass('this');
			if ($('.this + .hider').is(":hidden")) {
				$('.this + .hider').slideDown('slow');
				} else {
					$('.this + .hider').slideUp('slow');
				}	
			$(this).removeClass('this');
});









});
