
var j = jQuery.noConflict();
j(document).ready(function($){
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'National Association of Bar Executives',
        url: 'http://www.nabenet.org'
    });
    
	// Login
	$('#leftnavcell').prepend('<div id="login-widget"></div>');
	$('#login-widget').incLoginWidget({
		showLabels: false,
		showAutoLogout: false,
		buttonImage: '/associations/12434/imgs/btn-login.png',
		hoverImage: '/associations/12434/imgs/btn-login-hover.png'
	});
	
	// Events
	$('#events-widget').inc360events({
		url: 'https://m360.nabenet.org/frontend/portal/viewcalendar.aspx',
		items: 3,
		showLink: false
	});
 						   
});

