(function($){
	$(document).ready(function(){
		
		$('.academies').hover(
			function(){
				$(this).addClass('hilight');
			},
			function(){
				$(this).removeClass('hilight')
			}
		);
});
	
})(jQuery);
