$(document).ready(function(){

	$("#bgmask").css("height", $(document).height());
	
	var h1F = function() {
		$("#bgmask")
			.animate({ backgroundColor: "#ff9c00" }, 8000)
			.animate({ backgroundColor: "#ff0060" }, 8000)
			.animate({ backgroundColor: "#8400ff" }, 8000)
			.animate({ backgroundColor: "#009cff" }, 8000)
	}
	h1F();
});