/*----------------------------------------
CPRA Javascript
Author: Mitch Dunaway
Last Updated: July 26, 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: 'Colorado Parks and Recreation Association',
        url: 'http://www.cpra-web.org'
    });
    
    // Login
    $('#leftnavcell').prepend('<div id="login-widget"></div>');
    $('#login-widget').incLoginWidget({
        showLabels: false,
        showForgotUser: false,
        showAutoLogout: false,
        buttonImage: '/associations/12903/imgs/btn-login.png',
        hoverImage: '/associations/12903/imgs/btn-login-hover.png'
    });
    
    // Search
	$('#leftnavcell').append('<div id="search-widget">Loading search...</div>');
	$('#search-widget').html('').incSearchWidget({
		formAction: 'http://www.cpra-web.org/searchsite.cfm',
		showLabel: false,
		buttonImage: '/associations/12903/imgs/btn-search.png',
		hoverImage: '/associations/12903/imgs/btn-search-hover.png'
	});
	
	// Leftnav Sponsors
	$('#leftnavcell').append('<div id="sponsors"></div>');
	$('#leftnavcell #sponsors').load('/global/get.cfm?cp=23',function(){
		$('#sponsors ul').incSponsorBox();
	});
	
	// 360 Events Widget
    $('#events-widget').new360events({
        url: 'https://m360.cpra-web.org/calendar.aspx',
        /*url: 'https://internal.affiniscape.com/calendar.aspx',*/       
        items: 3,
        style: 'full'
    });

						   
});

