/*----------------------------------------
ACCT Javascript
Author: Mitch Dunaway
Last Updated: July 20, 2011
(c) 2011 Affiniscape, Inc.
All Rights Reserved. This JavaScript file must not be reproduced without the express written permission of Affiniscape, Inc.
For questions regarding licensing or setup please contact Affiniscape, projects @ affiniscape dot com
----------------------------------------*/

var j = jQuery.noConflict();
j(document).ready(function($){
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'Association for Challenge Course Technology',
        url: 'http://www.acctinfo.org'
    });
    
    // Mktg Banner
	$('#banner ul').incMarketingBanner({
		time: 9,
		showBtns: false,
		showPager: true
	});
	
	// Events
	$('#events-widget').inc247events({
		items: 6,
		style: 'compact',
		showLink: false
	}); 
	
	$('#maincontentcell #sidebar ul li:last').addClass('last');
						   
	});

	
