function start(){
	
	$(function(){
		setTimeout(
			function(){changeImage();}
			//changed from 10000
			,5000
		);
	});
	
	
}

function next(){
	
	$(function(){	
		setTimeout(
			function(){if(i==(menuImages.length-1)){i=0;changeImage();}else{i++;changeImage();}}
			//changed from 10000
			,5000
		);
	});
	
	
}

function removeImage(){	
		$('img.menu_fade_images:first').remove();	
}

function changeImage(){
	
	$(function () {
	//if (i==5){alert("5");}
	
			var img = new Image();
			$(img)
			.load(function () {
				//$('#header img.banner').hide();
				$('#menu_images').removeClass('loader').append(this);
				$(this).addClass('menu_fade_images').hide().fadeIn(2000,function(){removeImage()});	
					
			})
			.error(function () {			
				// notify the user that the image could not be loaded
			})
			.attr('src', path+menuImages[i]),next()		
	});
	
}
