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