/*----------------------------------------
CAI-MN Javascript
Author: Marcus Ellis
Last Updated: August 22, 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($){
    
	// Mktg Banner
	$('#banner ul').incMarketingBanner();
	
	// Events
	$('#events-widget').new360events({
		url: 'https://m360.cai-mn.com/calendar.aspx',
		items: 3,
		style: 'full'
	});
	
	// Sponsors
	$('#sponsors ul').incSponsorBox();
	
    // Search
	$('#navtop1list').after('<div id="search-widget"></div>');
	$('#search-widget').incSearchWidget({
		showLabel: false,
		buttonImage: '/associations/4678/imgs/btn-search.png',
		hoverImage: '/associations/4678/imgs/btn-search-hover.png'
	});
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'Community Associations Institute - Minnesota Chapter',
        url: 'http://www.cai-mn.com'
    });

});

