$(document).ready(function(){
	$("#aadcube").mouseover(function(){
		$("#thing01").addClass("show01");
	});
	
	$("#aadcube").mouseout(function(){
		$("#thing01").removeClass("show01");
	});

	$("#femcube").mouseover(function(){
		$("#thing02").addClass("show02");
	});
	
	$("#femcube").mouseout(function(){
		$("#thing02").removeClass("show02");
	});
	
	$("#eincube").mouseover(function(){
		$("#thing03").addClass("show03");
	});
	
	$("#eincube").mouseout(function(){
		$("#thing03").removeClass("show03");
	});
	
	$("#jlcube").mouseover(function(){
		$("#thing04").addClass("show04");
	});
	
	$("#jlcube").mouseout(function(){
		$("#thing04").removeClass("show04");
	});
	
	$("#wtrdcube").mouseover(function(){
		$("#thing05").addClass("show05");
	});
	
	$("#wtrdcube").mouseout(function(){
		$("#thing05").removeClass("show05");
	});
	
	$("#novacube").mouseover(function(){
		$("#thing06").addClass("show06");
	});
	
	$("#novacube").mouseout(function(){
		$("#thing06").removeClass("show06");
	});
	
	$("#gicube").mouseover(function(){
		$("#thing07").addClass("show07");
	});
	
	$("#gicube").mouseout(function(){
		$("#thing07").removeClass("show07");
	});
	
	$("#gigicube").mouseover(function(){
		$("#thing08").addClass("show08");
	});
	
	$("#gigicube").mouseout(function(){
		$("#thing08").removeClass("show08");
	});
	
	$("#benzcube").mouseover(function(){
		$("#thing09").addClass("show09");
	});
	
	$("#benzcube").mouseout(function(){
		$("#thing09").removeClass("show09");
	});
	
	$("#yucube").mouseover(function(){
		$("#thing10").addClass("show10");
	});
	
	$("#yucube").mouseout(function(){
		$("#thing10").removeClass("show10");
	});
	
	$(".derp01").mouseover(function(){
		$("#thumb01").addClass("pop01");
	});
	
	$(".derp01").mouseout(function(){
		$("#thumb01").removeClass("pop01");
	});
	
	$(".derp02").mouseover(function(){
		$("#thumb02").addClass("pop02");
	});
	
	$(".derp02").mouseout(function(){
		$("#thumb02").removeClass("pop02");
	});
	
	$(".derp03").mouseover(function(){
		$("#thumb03").addClass("pop03");
	});
	
	$(".derp03").mouseout(function(){
		$("#thumb03").removeClass("pop03");
	});
	
	$(".derp04").mouseover(function(){
		$("#thumb04").addClass("pop04");
	});
	
	$(".derp04").mouseout(function(){
		$("#thumb04").removeClass("pop04");
	});
});
