/*----------------------------------------
BGSHRM Javascript
Author: Marcus Ellis
Last Updated: July 14, 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($){
	
	// Mktg Banner
	$('#banner ul').incMarketingBanner({
		time: 9,
		showPager: true
	});
	
	// Login
	$('#login-widget').incLoginWidget({
		showLabels: false,
		showForgotUser: false,
		showAutoLogout: false,
		buttonImage: '/associations/5693/imgs/btn-login.png',
		hoverImage: '/associations/5693/imgs/btn-login-hover.png'
	});
	
	// Events
	$('#events-widget').inc247events({
		items: 4,
		style: 'compact',
		linkText: 'View All &raquo;'
	});
	
	// Sponsors
	$('#sponsors ul').incSponsorBox();
	
	// Search
	$('#navtop1').after('<div id="search-widget"></div>');
	$('#search-widget').incSearchWidget({
		showLabel: false,
		showButton: false
	});
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'Bluegrass Society for Human Resource Management',
        url: 'http://www.bgshrm.org'
    });
    
});

