/*----------------------------------------
HBACA Javascript
Author: Mitch Dunaway
Last Updated: December 19, 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
    $('#cms-header-extras').append('<div id="search-widget"></div>');
    $('#search-widget').incSearchWidget({
    	placeholder: 'Enter keyword or search term',
		showLabel: false,
    	buttonImage: '/associations/3222/imgs/btn-search.png',
    	hoverImage: '/associations/3222/imgs/btn-search-hover.png'
    });

	// Login Widget
	$('#login-widget').incLoginWidget({
		showAutoLogout: false,
		showForgotUser: false,
		forgotPassText: 'Forgot password?',	
		buttonImage: '/associations/3222/imgs/btn-login.png',
		hoverImage: '/associations/3222/imgs/btn-login-hover.png'
	});
	
	// Marketing Banner
	$('#banner ul').incMarketingBanner({
		time: 9,
		showButtons: true
	});
	
	// 360 Events Widget
	$('#events-widget').inc360events({		
		url: 'https://m360.hbaca.org/calendar.aspx',
		items: 3,
		style: 'compact', //defaults to full
		showLink: false
	});
	
	// Sponsor Box
	$('#sponsors ul, #skyscraper-list').incSponsorBox({
		time: 9
	});
    
});

