$(function() {
	//
	//	Loading notification
	//
	$("#loadingContainer").hide().ajaxStart(function() {
        //$(this).text('LOADING...');
        $(this).show();
	}).ajaxStop(function(){
        //$(this).text('');
        $(this).hide();
	});

	//
	//	Messages Container
	//
	$("#messagesContainer ul").live('click', function() {
		$(this).fadeOut();
	});
    
    

    $("#navContentContainer").dropDown();
    
});