/*----------------------------------------
SACSA Javascript
Author: Marcus Ellis
Last Updated: May 18, 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
	});
	
	// Sponsors
	$('#sponsors ul').incSponsorBox();
	
	// Login
	$('#login-widget').incLoginWidget({
		showLabels: false,
		showForgotUser: false,
		showAutoLogout: false,
		buttonImage: '/associations/6953/imgs/btn-login.png',
		hoverImage: '/associations/6953/imgs/btn-login.png'
	});
	
	// Flyouts
	$('#navtop1,#navtop2').addSlidingFlyouts({
		speedDown: 0,
		speedUp: 0
	});
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'Southern Association for College Student Affairs',
        url: 'http://www.sacsa.org'
    });
    
});

