/*******************************************************************************
	AUTHOR:		Timothy Higgins
	CONTACT:	timothymichaelhiggins@gmail.com
	
	Utility functions.
*******************************************************************************/

	//Track background position.
	var _clouds=(Math.random()*1000);

	/***************************************************************************
		Move the background clouds.
	***************************************************************************/
	function moveClouds(){
		
		//Prevent overflow.
		if(_clouds<100000)
			_clouds++;
		else
			_clouds=0;
		document.body.style.backgroundPosition=_clouds+"px top";
	}
