﻿$(function () {

    $('#rotator span').hide();
    $('#rotator span:first').show();

    $('.attendee').mouseover(function () {
        $('span#attImage').fadeIn().siblings().fadeOut();
    });
    $('.exhibitor').mouseover(function () {
        $('span#exhImage').fadeIn().siblings().fadeOut();
    });
    $('.press').mouseover(function () {
        $('span#preImage').fadeIn().siblings().fadeOut();
    });

});
