var j = jQuery.noConflict();
j(document).ready(function($){

	// Events Slideshow
	$().slideshow('events');

	// Clickable Logo
    $('body').addClickableLogo({
		name: 'Richmond SHRM',
		url: 'http://www.richmondshrm.org'
	});

	// 360 Calendar
	$('#calendar360').inc360events({
		url: 'http://m360.richmondshrm.org/calendar.aspx',
		items: 5,
		style: 'compact',
        linkText: 'View All Richmond SHRM Events',
		callback: function (){
			$('#view-calendar').append(' | <a href="/calendar.cfm">Other Events</a>');
		}
	});
	
	// Adjust Board Page
	$('#maincontentcell').adjustBoard();
	
});

