/*----------------------------------------
AKCS Javascript
Author: Mitch Dunaway
Last Updated: December 02, 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($){
	
	// Marketing Banner
	$('#banner').load('/global/get.cfm?cp=24', function(){
		$('#banner ul li').each(function(){
			var src = $(this).find('img').attr('src');
			$(this).css('background-image','url('+src+')');
		});    	
		$('#banner ul').incMarketingBanner({
			showPager: true,
			pagerText: 'imgAlt'
		});
		
    });

	// 360 Events Widget
    $('#events-widget').new360events({
        url: 'https://m360.alaskachiropracticsociety.com/calendar.aspx',      
        items: 3,
        style: 'compact'
    });	
	
	// Search Widget
    $('body').append('<div id="search-widget"></div>');
    $('#search-widget').incSearchWidget({
    	showLabel: false,
		buttonImage: '/associations/13113/imgs/btn-search.png',
		hoverImage: '/associations/13113/imgs/btn-search-hover.png'
	});
	
	// Sponsor Box	
	$('#sponsors').load('/global/get.cfm?cp=25', function(){
    	$('#sponsors ul').incSponsorBox();
    });    
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'Alaska Chiropractic Society',
        url: 'http://www.alaskachiropracticsociety.com'
    });
    
    // ADD JAVASCRIPT CODE HERE
						   
});

