/*----------------------------------------
NASWNC Javascript
Author: Kari Grooms
Last Updated: January 24, 2012
(c) 2012 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: 'National Association of Social Workers - North Carolina',
		url: 'http://www.naswnc.org/'
	});
	
	// Login Widget
	$('#login-widget').incLoginWidget({
		showLabels: false,
		showAutoLogout: false,
		showForgotUser: true,
		forgotUserText: 'ID',
		showForgotPass: true,
		forgotPassText: 'Password',	
		buttonImage: '/associations/9529/imgs/btn-login.png',
		hoverImage: '/associations/9529/imgs/btn-login-hover.png'
	});
	
	// Marketing Banner
	$('#banner ul').incMarketingBanner({
		showPager: true,
		showButtons: false,
		showPauseBtn: false,
		showCaptions: false
	});
	
	// Sponsor Box
	$('#sponsors').incSponsorBox();	    
    
});

