/*----------------------------------------
WLRA Javascript
Author: Mitch Dunaway
Last Updated: July 15, 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: 'Wyoming Lodging and Restaurant Association',
        url: 'http://www.wlra.org/associations/884/index2.cfm'
    });
    
    // Sponsor Box
    $('.sponsors').incSponsorBox({
    	time: 3
    });
    
    // Search Widget
    $('body').append('<div id="search-widget"></div>');
    $('#search-widget').incSearchWidget({
    	showLabel:false,
    	buttonImage: '/associations/884/imgs/btn-search.png',
    	hoverImage: '/associations/884/imgs/btn-search-hover.png'
    });
    
    //24x7 Events Widget
    $('#events-widget').inc247events({
    	items: 3,
    	style: 'compact',
    	showDesc: true
    });
   
    
    // Login Widget
	$('#login-widget').incLoginWidget({
		showForgotUser: false,
		buttonImage: '/associations/884/imgs/btn-login.png',
    	hoverImage: '/associations/884/imgs/btn-login-hover.png'
	});
	
	// Marketing Banner
	$('#banner ul').incMarketingBanner({
		showButtons: true
	}); 
						   
});

