function loading(){
	fuckLoad = new Tween(document.getElementById('fuck').style,'top',Tween.bounceEaseOut,-250,-52,0.4,'px');
	
	fuckLoad.onMotionFinished = function(){
		ajaxLoad = new Tween(document.getElementById('ajax').style,'top',Tween.bounceEaseOut,-200,-32,0.4,'px');
		ajaxLoad.start();
		
		ajaxLoad.onMotionFinished = function(){
			dirtyLoad = new Tween(document.getElementById('dirty').style,'top',Tween.bounceEaseOut,-225,-53,0.4,'px');
			dirtyLoad.start();
			
			dirtyLoad.onMotionFinished = function(){
					test1 = new Tween(document.getElementById('needle2').style,'top',Tween.strongEaseOut,400,0,0.4,'px');	
					test2 = new Tween(document.getElementById('needle2').style,'right',Tween.strongEaseOut,-430,-30,0.4,'px');
					test1.start();
					test2.start();
			};
			
		};
		
	};
	
	fuckLoad.start();
	
}

var passedValidation = false;

function commentsValidation(){
	passedValidation = true;
	if(document.getElementById('name').value.length<1){
		alert("Please enter a valid name");
		return false;
	}
	else if(document.getElementById('comments').value.length<1){
		alert("Please enter a comment in the box provided");
		return false;
	}	
	else if(document.getElementById('spamFilter').selectedIndex!=2){
		alert("This javascript function suspects that you are either a spam-bot, a wise guy or an alien. This form is not for you!");
		return false;
	}	
	else{
		return true;
	}
}
	
	
	
	
	
	
	
	
	
	