/*----------------------------------------
NCASA Javascript
Author: Mitch Dunaway
Last Updated: November 2, 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($){
	
	// Search Widget
	$('body').append('<div id="search-widget"></div>');
	$('#search-widget').incSearchWidget({		
		showLabel: false,	
		showButton: false
	});
	
	// Marketing Banner
	$('#banner ul').incMarketingBanner({
		showPager: true
	});
	
	// 360 Events Widget
	$('#events-widget').new360events({		
		url: 'https://m360.ncasa.net/calendar.aspx',
		items: '3',
		style: 'compact', //defaults to full		
		linkText: 'View All &raquo;'
	});
	
	// Login Widget
	$('#login-widget').incLoginWidget({
		showLabels: false,
		showAutoLogout: false,
		showForgotUser: false,
		forgotPassText: 'Forgot Your Password?',
		buttonImage: '/associations/2410/imgs/btn-login.png',
		hoverImage: '/associations/2410/imgs/btn-login-hover.png'
	});
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'North Carolina Association of School Administrators',
        url: 'http://www.ncasa.net'
    });
						   
});

