/*  MIT CAC Window JS
    Copyright 2009
*/

$(document).ready(function(){

	$("#nav a[href='/about/']").bind('click',function(){
		alertDis(); return false; });

	$("#nav a[href='/committees/']").bind('click',function(){
		alertDis(); return false; });

	$("#nav a[href='/resources/']").bind('click',function(){
		alertDis(); return false; });
	
});

function alertDis(){
	alert("This page has not yet been created.\n(Content coming soon!)");
}