/*----------------------------------------
ODEA Javascript
Author: Marcus Ellis
Last Updated: July 8, 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: 'Oregon Dental Executives Association',
        url: 'http://www.oregondentalexecutives.org/'
    });
    
    // Login
	$('#leftnavcell').prepend('<div id="login-widget">Loading login...</div>');
	$('#login-widget').incLoginWidget({
		showLabels: false,
		showForgotPass: true,
		showForgotUser: false,
		showAutoLogout: false,
		buttonImage: '/associations/5420/imgs/btn-login.png',
		hoverImage: '/associations/5420/imgs/btn-login-hover.png'	
	});
	
	// Search
	$('#leftnavcell').append('<div id="search-widget">Loading search...</div>');
	$('#search-widget').html('').incSearchWidget({
		formAction: 'http://www.oregondentalexecutives.org/searchsite.cfm',
		showLabel: false,
		buttonImage: '/associations/5420/imgs/btn-search.png',
		hoverImage: '/associations/5420/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();
	});
	
	// Mktg Banner
	$('#banner').append('<a title="Previous" class="banner-btn" id="prev-btn">Previous</a><a title="Next" class="banner-btn" id="next-btn">Next</a>');
	$('#prev-btn').click(function(e){
		e.preventDefault();
		$('#banner ul').cycle('prev');
	});
	$('#next-btn').click(function(e){
		e.preventDefault();
		$('#banner ul').cycle('next');
	});
	
	// Events
	$('#events-widget').inc247events({
		items: 3,
		style: 'full',
		dateFormat: 'full'
	});
	
});

