document.oncontextmenu = function(e) {
 return false;
};

function Glow(repeat) {
	var inEase = 150;
	var outEase = 150;
	$("#news").animate( { backgroundColor: "#54B948" }, inEase, function() {
		$(this).animate( { backgroundColor: "#000" }, outEase);
		$("#who").animate( { backgroundColor: "#54B948" }, inEase, function() {
			$(this).animate( { backgroundColor: "#000" }, outEase);
			$("#what").animate( { backgroundColor: "#54B948" }, inEase, function() {
				$(this).animate( { backgroundColor: "#000" }, outEase);
				$("#why").animate( { backgroundColor: "#54B948" }, inEase, function() {
					$(this).animate( { backgroundColor: "#000" }, outEase, function() {	
						if(repeat) {
							Glow(false);
						}
						else
						{
							$(".menubullet").mouseover(function() {
								$(this).animate( { backgroundColor: "#54B948" }, 250);
							});
	
							$(".menubullet").mouseleave(function() {
								$(this).animate( { backgroundColor: "#000" }, 500);
							});
						}
					});
				});
			});
		});
	});	
}

$(document).ready( function() {
	Glow(true);
});
