
var j = jQuery.noConflict();
j(document).ready(function($){
    
    // Sponsors
	$('#sponsors ul').incSponsorBox({
		shuffle: false
	});
	
	// Events
	$('#events-widget').inc360events({
		url: 'https://m360.virginianurses.com/frontend/portal/viewcalendar.aspx',
		items: 3,
		style: 'compact',
		showLink: true,
		linkText: 'View All &raquo;'
	});
	
	// Fade on Hover
	$('.fade').hover(function(){
		$(this).stop(true, true).fadeTo(400, 1.0);
	},function(){
		$(this).stop(true, true).fadeTo(400, 0.5);
	});
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'Virginia Nurses Association',
        url: 'http://www.virginianurses.com'
    });

});

