// JavaScript Document
$(function() {
var zIndexNumber = 90;
$('div').each(function() {
$(this).css('zIndex', zIndexNumber);
zIndexNumber -= 1;
});
});
