/*----------------------------------------
CalPsych Javascript
Author: Marcus Ellis
Last Updated: August 31, 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($){
    
	// Events
	$('#events-widget').new360events({
		url: 'http://m360.cpapsych.org/calendar.aspx',
		items: 3,
		style: 'full'
	});

	// Login
	$('#leftnavcell').prepend('<div id="login-widget">Loading Login...</div>');
	$('#login-widget').incLoginWidget({
		showLabels: false,
		showForgotUser: true,
		showForgotPass: true,
		showAutoLogout: false,
		forgotUserText: 'Forgot username?',
		forgotPassText: 'Forgot password?',
		buttonImage: '/associations/13260/imgs/btn-login.png',
		hoverImage: '/associations/13260/imgs/btn-login-hover.png'
	})
	
	// Sponsors
	$('#sponsors ul, ul#sponsors').incSponsorBox();

    // Search
	$('body').append('<div id="search-widget"></div>');
	$('#search-widget').incSearchWidget({
		formAction: 'http://www.cpapsych.org/searchsite.cfm',
		showLabel: false,
		showButton: false
	});
	
	// Sliding Flyouts
	$('#navtop1list').addSlidingFlyouts();
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'California Psychological Association',
        url: 'http://www.cpapsych.org'
    });

});

