/*----------------------------------------
BAMC Javascript
Author: Marcus Ellis
Last Updated: May 20, 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($){
	
	// Banner
	$('#banner ul').incMarketingBanner({
		showButtons: true
	});
	
	// Events
	$('#events-widget').new360events({
		url: 'http://m360.montbar.org/calendar.aspx',
		items: 3,
		style: 'compact',
		showLink: true,
		linkText: 'View All Events &raquo;'
	});
	
	// Login
	$('#login-widget').incLoginWidget({
		showForgotUser: false,
		showAutoLogout: false,
		forgotPassText: 'Forgot password?',
		buttonImage: '/associations/12896/imgs/btn-login.png',
		hoverImage: '/associations/12896/imgs/btn-login-hover.png'	
	});
	
	// Search
	$('#navtop1div').append('<div id="search-widget"></div>');
	$('#search-widget').incSearchWidget({
		formAction: 'http://www.montbar.org/searchsite.cfm',
		showLabel: false,
		buttonImage: '/associations/12896/imgs/btn-search.png',
		hoverImage: '/associations/12896/imgs/btn-search.png'
	});
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'Bar Association of Montgomery County',
        url: 'http://www.montbar.org'
    });
    
});

