// Site File
$(function(){
	$(document.body).css({overflow:"hidden", background:"white"});
	
	$(window).mousemove(function(e){
		var n = (Math.random()*10)+5;
		$('<div class="mousebox" />')
			.appendTo(document.body)
			.css({
				zIndex:-10,
				position:"absolute",
				top:e.pageY,
				left:e.pageX,
				width:n,
				height:n,
				backgroundColor:"rgb("+Math.ceil(Math.random()*255)+","+Math.ceil(Math.random()*255)+","+Math.ceil(Math.random()*255)+")"
			})
			.animate({
				opacity:0,
				top:"+="+Math.random()*40,
				left:"+="+Math.random()*40
			}, function(){
				$(this).remove();
			})
		;
	});
	
	
	
	
	

});
