
var j = jQuery.noConflict();
j(document).ready(function($){
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'CFA Society of Dallas-Ft Worth',
        url: 'http://www.cfadfw.org'
    });
 	
    // Search
	$('#navtop1').wrap('<div id="navtop1div"></div>');
	$('#navtop1div').append('<div id="search-widget"></div>');
	$('#search-widget').incSearchWidget({
		showLabel: false,
		buttonType: 'image',
		buttonImage: '/associations/3922/imgs/btn-search.png',
		hoverImage: '/associations/3922/imgs/btn-search-hover.png'
	});
   
	// Login
	$('#login-widget').incLoginWidget({
		showAutoLogout: false,
		buttonType: 'image',
		buttonImage: '/associations/3922/imgs/btn-login.png',
		hoverImage: '/associations/3922/imgs/btn-login-hover.png'
	});
	
	// 24x7 Events Widget
    $('#events-widget').inc247events({
		dateFormat: 'full',
		linkText: 'View Our Calendar',
		style: 'full'
	});

});

