$(document).ready(function(){

	var angle = 0;
	setInterval(function(){
		angle+=.25;
	 $("#wheel img").rotate(angle);
	},100);

	$("#square .button a").each(function() {
		$(this).hover(function() {
			$(this).stop().animate({"opacity" : 0}, 200);
		}, function() {
			$(this).stop().animate({"opacity" : 1}, 200);
		})	;
	});

	$("#square .button a").aHoverTip({width : 162});

});

