jQuery(document).ready(function ($) {
	
	var currPicID = 0;
	allMenuPics = $('img','#menuBar');
	
	allMenuPics.each(function(index) {
		
		var position = (index * 80);
		$(this) .delay(500 + index * 50)
				.css('top','-80px')
				.animate({'top':'0px','opacity':'1'})
	});
	
	
});
