/*----------------------------------------
NASW-TX Javascript
Author: Mitch Dunaway
Last Updated: May 11, 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: 'National Association of Social Workers - Texas',
        url: 'http://www.naswtx.org'
    });
    
    // Accordion Widget
    $('#accordion-widget').incAccordionWidget({
    	autoHeight: false
    });
    
    //24x7 Events Widget
    $('#events-widget').inc247events({
       style: 'compact',
       showDesc: false,
       showLink: false
    }); 
    
    // Login Widget
	$('#login-widget').incLoginWidget({
   		showLabels: false,
   		showAutoLogout: false,
   		buttonImage: '/associations/8710/imgs/btn-login.png',
   		hoverImage: '/associations/8710/imgs/btn-login.png'

	});			
				
				
	// Search Widget
    $('body').append('<div id="search-widget">&nbsp;</div>');
    $('#search-widget').incSearchWidget({
    	showLabel: false,
    	buttonImage: '/associations/8710/imgs/btn-search.png',
   		hoverImage: '/associations/8710/imgs/btn-search-hover.png'
    });
    $('#search-field').insertAfter('#search-button');
});

