
var j = jQuery.noConflict();
j(document).ready(function($){
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'Tennessee Association for Home Care',
        url: 'http://www.tahc-net.org'
    });
    
    // Login Widget
	$('#leftnavcell').prepend('<div id="login-widget"></div>');
	$('#login-widget').incLoginWidget({
		showLabels: false,
		showAutoLogout: false,
		buttonImage: '/associations/12308/imgs/btn-login.png',
		hoverImage: '/associations/12308/imgs/btn-login-hover.png'
	});
	
	// Events Widget
	$('#events-widget').inc360events({
		url: 'https://m360.tahc-net.org/calendar.aspx',
		items: 2,
		style: 'full',
		showLink: false
	});
		
});

