﻿$(function(){
	$('.menu li').hover(
		function () {
			//$j(this).find('div').css('backgroundColor','#ff00ff');
			$(this).mousemove(function(e){
				$(this).find('div').css('backgroundColor',cl[(e.pageX + e.pageY) % 953]);
			});
		},
		function () {
			$(this).find('div').animate({ backgroundColor: '#000000'}, 400);
		}
	);
	$("a[rel='lightbox']").colorbox();
});
