function animateColor(color,duration)
{
	$('body').animate({backgroundColor:'#' + color},duration).delay(15000);
}

function animateBody()
{
	animateColor('e5ffe8',50000); // green
	animateColor('e1f1fd',50000); // blue
	animateColor('fafde1',50000); // yellow
	animateColor('fdeee1',50000); // orange

	animateBody();
}


$(document).ready(function(){
	animateBody();
});

$(window).load(function()
{
	$('#slider').show().nivoSlider({
		effect: 'fade',
		slices: '30',
		pauseTime: 6000,
		animSpeed:800,
		directionNav: false,
		controlNav: false
	});
});

	

