summaryrefslogtreecommitdiff
path: root/website/hover.js
blob: a65430946c4826576cdab2d1bdacb754eea037f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
$(document).ready(function() {
	alert("This website is for viewable archive purposes only! None of the projects (except rapbot) exist, and these guys don't do this stuff anymore. Move on with your life!");
	$(".link_box").hover(
	  function () {
		$(this).addClass("hover");
	  },
	  function () {
	    $(this).removeClass("hover");
	  }
	);
});