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

$(document).ready(function() {
	$('.expand .expand-info').hide();
	$('.expand .expand-header').click(function() {
		if(!$(this).parent().is('.expanded')){
			$(this).parent().addClass('expanded');
			$(this).next().slideDown();
			} 
		else {
			$(this).parent().removeClass('expanded');
			$(this).next().slideUp();
		}
		this.blur();
	  return false;
	});
});