$(function() {	var zIndexNumber = 1000;	$('div').each(function() {		$(this).css('zIndex', zIndexNumber);		zIndexNumber -= 10;	});});
