$(function(){

	/**	topNavigation menu events */
	//	todo
	$(document).on('click', '#topNav_todo', function(e){
		alert('under development, try again later.');
		e.preventDefault();
	})
	//	notes
	$(document).on('click', '#topNav_notesFou', function(e){
		e.preventDefault();
		//	hide #content for static pages
		$('#content').empty();
		//	activate menu link
		$('#topNav').find('.active').removeClass('active');
		$(this).addClass('active');
		//	make notes app visible
		$('#topSubNav_notes, #topSubNavContainer').show(); //, #notes, #sidebar ').show('fast');
		$('#sidebar').show();
		//	run the notes!
		notesView.init();
	})
	
});
