/*
	Pages JS bootstrap
*/
$(function() {
	var navTabs = new Array();
	$('#fullnav').prepend('<ul id="tablist" class="anchors"></ul>');
	$('#fullnav > div').each(function() {
		$(this).addClass('fragment');
		title = $(this).find('h3');
		title.hide();
		$('#tablist').append('<li><a href="#'+$(this).attr('id')+'">'+title.text()+'</a></li>');
	});
	$('#fullnav').tabs();

	$('#newcomment').hide();
	if (window.location.hash && !window.location.search) {
		if (window.location.hash == '#addco' || window.location.hash == '#pr') {
			$('#newcomment').show();
		}
	}
	$('#toggleForm').click(function() {
		$('#newcomment').toggle();
		return false;
	});
});

