//**********************************************************************************************************************
/**
* COMPANY: Zipline Interactive
* EMAIL: infon@gozipline.com
* PHONE: 509-321-2849
* DESCRIPTION: This document contains programming required for the website templates.  Requires the jQuery library.
*/
//***********************************************************************************************************************

	var i = 1;
	var time = 1000;

	function zombie_walk(i) {
		$('html').append('<img src="http://www.feebleminds-gifs.com/1zombiegif.gif" id="zombie'+i+'" />');
		
		top = Math.floor(Math.random()*301);
		
		$('#zombie'+i).css({
			position: 'absolute',
			top: top,
			right: 0,
		}).animate({
			left: '-100px'
		},20000,function(){
			$('#zombie'+i).remove();
			//zombie_walk();
		});
	}
//***********************************************************************************************************************
//ON DOCUMENT READY FUNCTIONS
//***********************************************************************************************************************
$(function() {

	

	/*
while(i < 100) {
		setTimeout('zombie_walk('+i+')',time);
		rand = Math.floor(Math.random()*101) * 10;
		time = time + rand;
		i++;
	}
*/
	

});


