//<!--
	if (document.images) {

		var degrees = 1;

		function logo_spin()
		{
			var imagewidth = 16;		//image width !
			var period = 1000; 			//time in mS for one rotation
			var step = 90;					//no of steps in 180degrees

		//************ Repeat this line for each image ****************************
			document.images.deathwagon_web_design_logo.width = imagewidth * Math.sin(2 * Math.PI * degrees / 360);
			document.images.active.width = imagewidth * Math.sin(2 * Math.PI * degrees / 360);			
		//**************************************************************************

			if (degrees < 180)
			{
				degrees = degrees + 180/step;
			}
			else
			{
			degrees = 1;
			}

			setTimeout("logo_spin()",(period/step));
		}
		
	logo_spin()
	
	}

//-->
