/*----------------------------------------
NOTA Javascript
Author: Mitch Dunaway
Last Updated: January 04, 2012
(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
    $('header.main').append('<div id="search-widget"></div>');
    $('#search-widget').incSearchWidget({
    	placeholder: 'Search Keyword',
		showLabel: false,
    	showButton: false
    });

	// Login Widget
 	$('#cms-content-right').prepend('<div id="login-box"><h5>Member Login</h5><div id="login-widget"></div></div>');	
	$('#login-widget').incLoginWidget({
		showLabels: false,
		placeholder: {
			username: 'username',
			password: 'password'
		},
		showAutoLogout: false,
		forgotUserText: 'ID',
		forgotPassText: 'password',	
		buttonImage: '/associations/13295/imgs/btn-login.png',
		hoverImage: '/associations/13295/imgs/btn-login-hover.png'
	});
    
});

