/*----------------------------------------
SLUC Javascript
Author: Kari Grooms
Last Updated: December 21, 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({
		showLabel: false,
		buttonImage: '/associations/1493/imgs/btn-search.png',
		hoverImage: '/associations/1493/imgs/btn-search.png'
	});
	
	// Login Widget
	$('#login-widget').incLoginWidget({
		showLabels: true,
		showAutoLogout: false,
		showForgotUser: false,
		forgotPassText: 'Forgot Your Password?',	
		buttonImage: '/associations/1493/imgs/btn-login.png',
		hoverImage: '/associations/1493/imgs/btn-login-hover.png'
	});
	
	// Sponsor Box
	$('#sponsors').incSponsorBox();
   
});

