
currentSection = '#qp_home';

$(document).ready(
	function() {

		/* HIDE ALL SECTIONS */
		$('div.qp').hide();

		/* SHOW DEFAULT SECTION */
		$(currentSection).show();

		$('ul#quickPoints li a').click(
			function() {
				var sectionID = this.href.substring(this.href.indexOf('#'), this.href.length);
				var section = $(sectionID);
				var current = $(currentSection);
				section.height(current.height());
				$('#content').get(0).className = sectionID.substring(1);
				$(currentSection).hide(1, function() { section.show(); });
				currentSection = sectionID;
				return false;
			}
		);
	}
);