/*----------------------------------------
RDC Javascript
Author: Marcus Ellis
Last Updated: October 11, 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($){
	
	// Mktg Banner
	$('#banner ul').incMarketingBanner({
		showPager: true
	});
	
	// Login Widget
	$('#login-widget').incLoginWidget({
		showLabels: false,
		showAutoLogout: false,
		buttonImage: '/associations/2900/imgs/btn-login.png',
		hoverImage: '/associations/2900/imgs/btn-login-hover.png'
	});
	
	// Events
	$('#events-widget').inc247events({
		items: 6,
		style: 'compact',
		linkText: 'view all >>',
		callback: function(){
			if ($('#events li').length > 3){
				$('#events-widget ul li:gt(2)').addClass('hide');
				$('#events').append('<a id="view-more" href="#">View More +</a><a id="view-less" href="#" class="hide">View Less -</a>');
				$('#view-more, #view-less').live('click',function(){
					$('#events ul li:gt(2), #view-more, #view-less').toggleClass('hide');
					return false;
				});
			}
		}
	});

	// Blog Feed
	$('#feed-widget').incFeedWidget({
		url: 'http://www.facebook.com/feeds/page.php?id=134343089950577&format=rss20',
		items: 3,
		showDate: true,
		dateFormat: 'long',
		showTime: true
	});
	
	// Sponsors
	$('#sponsors ul, ul#sponsors').incSponsorBox();
	
	// Search
	$('#navtop1list').after('<div id="search-widget"></div>');
	$('#search-widget').incSearchWidget({
		showLabel: false,
		showButton: false
	})
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'Relocation Directors Council',
        url: 'http://www.relocationdirectorscouncil.org'
    });

});

