/*----------------------------------------
OKBIO Javascript
Author: Mitch Dunaway
Last Updated: July 25, 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: 'Oklahoma Bioscience Association',
        url: 'http://www.okbio.org'
    });
    
    // Marketing Banner
        $('#banner ul').incMarketingBanner({
                showButtons: true
            });
            
    //Events Widget
    $('#events-widget').new360events({    	
    	url:'https://m360.okbio.org/calendar.aspx',
    	items:3,
    	style:'compact',
    	showLink:false
    });		
    
    //Login Widget
    $('#login-widget').incLoginWidget({
    	showAutoLogout:false,
    	showForgotUser: false,
    	buttonImage: "/associations/12791/imgs/btn-login.png",
    	hoverImage: "/associations/12791/imgs/btn-login-hover.png"
    });	
    
    // Sponsor Box
    $('#sponsors ul').incSponsorBox({
        caption: true
    });
	$('.smaller-sponsor').each(function(){		
		$(this).add($(this).next()).wrapAll('<div class="sponsor-set"></div>');		
	});
    
    // Search Widget
	$('body').append('<div id="search-widget"></div>');
	$('#search-widget').incSearchWidget({
		buttonImage: "/associations/12791/imgs/btn-search.png",
		hoverImage: "/associations/12791/imgs/btn-search-hover.png"
	}); 
						   
});

