 $(document).ready(function() {
  $('#teeny').hover(function() {
    $('#title2').addClass('teeny');
  }, function() {
    $('#title2').removeClass('teeny');
  });
});

 $(document).ready(function() {
  $('#bambam').hover(function() {
    $('#title2').addClass('bambam');
  }, function() {
    $('#title2').removeClass('bambam');
  });
});
 
  $(document).ready(function() {
  $('#lashonda').hover(function() {
    $('#title2').addClass('lashonda');
  }, function() {
    $('#title2').removeClass('lashonda');
  });
});
  
   $(document).ready(function() {
  $('#ginger').hover(function() {
    $('#title2').addClass('ginger');
  }, function() {
    $('#title2').removeClass('ginger');
  });
});
   
    $(document).ready(function() {
  $('#jukebox').hover(function() {
    $('#title2').addClass('jukebox');
  }, function() {
    $('#title2').removeClass('jukebox');
  });
});
	
	 $(document).ready(function() {
  $('#sleepy').hover(function() {
    $('#title2').addClass('sleepy');
  }, function() {
    $('#title2').removeClass('sleepy');
  });
});
	 
	  $(document).ready(function() {
  $('#shbingo').hover(function() {
    $('#title2').addClass('shbingo');
  }, function() {
    $('#title2').removeClass('shbingo');
  });
});

$.fn.preload = function() {
    this.each(function(){
        $('<img/>')[0].src = this;
    });
}

// Usage:

$(['../images/bios/groupshot.png','../images/bios/teeny.png',,'../images/bios/bambam.png','../images/bios/lashonda.png','../images/bios/ginger.png','../images/bios/jukebox.png','../images/bios/sleepy.png','../images/bios/shbingo.png']).preload();



