// JavaScript Document

$.noConflict();
jQuery(document).ready(function($) {
  
  $('.who').hover(function(event) {
    $('.mask').toggleClass('whoRoll');
  });
  
  $('.what').hover(function(event) {
    $('.mask').toggleClass('whatRoll');
  });
   
  $('.roster').hover(function(event) {
    $('.mask').toggleClass('rosterRoll');
  });
	
  $('.talk').hover(function(event) {
    $('.mask').toggleClass('talkRoll');
  });

  
});

