/*----------------------------------------
AASBO Javascript
Author: Mitch Dunaway
Last Updated: September 08, 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($){
	
	// 360 Events Widget
   $('#events-widget').new360events({
        url: 'https://m360.aasbo.org/calendar.aspx',      
        items: 3
    });
	
	// Login Widget
	$('#leftnavcell').prepend('<div id="login-widget">Loading Login</div>');
	$('#login-widget').incLoginWidget({
		showLabels: false,
		showAutoLogout: false,
		showForgotUser: false,
		buttonImage: '/associations/9641/imgs/btn-login.png',
		hoverImage: '/associations/9641/imgs/btn-login-hover.png'
	});
	
	// Search Widget
    $('#leftnavcell').append('<div id="search-widget"></div>');
    $('#search-widget').incSearchWidget({
    	showLabel: false,
		buttonImage: '/associations/9641/imgs/btn-search.png',
		hoverImage: '/associations/9641/imgs/btn-search-hover.png'
	});
	
	$('#leftnavcell').append('<div id="sponsors"></div>');	
	$('#sponsors').load('/global/get.cfm?cp=23', function(){

    	$('#sponsors ul').incSponsorBox({});

    });

	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'Arizona Association of School Business Officials',
        url: 'http://www.aasbo.org'
    });
						   
});

