(function () {

	var cc = function () {
	
		var x, y, r, g, b,
			width = window.innerWidth;
			height = window.innerHeight;
			body = $("body"),
			h1 = $("h1"),
			notes = $(".note");
		
		$("html").mousemove(function (e) {
			x = e.clientX;
			y = e.clientY;
			r = Math.round(x / width * 100);
			g = Math.round(y / height * 100);
			b = Math.round(g / 2 + r / 2);
			$(body).css({background:"rgb("+(g*2)+","+(b*2)+","+(r*2)+")"});
	//		$(h1).css({color:"rgb("+ g +","+ b +","+ r +")",background:"rgb("+(g/2)+","+(b/2)+","+(r/2)+")"});
	//		$(h1).css({background:"rgb("+(g/2)+","+(b/2)+","+(r/2)+")"});
	//		$(notes).css({background:"rgb("+(g/2)+","+(b/2)+","+(r/2)+")"});
		});
		
		
		
		
	};
	
	$(document).ready(function() {
		cc();
	});
	
}());
 
