
var j = jQuery.noConflict();
j(document).ready(function($){
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'Santa Clara County Bar Association',
        url: 'http://www.sccba.com'
    });
	
   // Login
    $('#leftnavcell').prepend('<div id="login-widget"></div>');
    $('#login-widget').incLoginWidget({
        showLabels: false,
        showAutoLogout: false,
        buttonImage: '/associations/12315/imgs/btn-login.png',
        hoverImage: '/associations/12315/imgs/btn-login-hover.png'
    });

	// Home Page
	if ($('.home').length){
	
		// Events
		$('#events-widget').inc360events({
			url: 'http://m360.sccba.com/viewcalendar.aspx',
			items: 4,
			style: 'full',
			showLink: false,
            dateFormat: 'full'
		});

	}

});

