/*----------------------------------------
INANA Javascript
Author: Mitch Dunaway
Last Updated: June 30, 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($){
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'Indiana Association of Nurse Anesthetists',
        url: 'http://www.inana.org'
    });
    
    // Login Widget
	$('#login-widget').incLoginWidget({
		showForgotUser: false,
		buttonImage: '/associations/12994/imgs/btn-login.png',
    	hoverImage: '/associations/12994/imgs/btn-login-hover.png'
	});
	$('#login-widget').add($('#login-widget').prev($('h2'))).wrapAll('<div id="loginWrap" />');
	
	// Search Widget
    $('body').append('<div id="search-widget">&nbsp;</div>');
    $('#search-widget').incSearchWidget({
    	formAction: 'http://inana.affiniscape.com/searchsite.cfm',
    	showLabel: false,
    	buttonImage: '/associations/12994/imgs/btn-search.png',
    	hoverImage: '/associations/12994/imgs/btn-search-hover.png'
    
    });
						   
});

