﻿/// <reference path="../Scripts/jquery-1.3.2-vsdoc.js" />
$(document).ready(function() {
    $('#nojs').hide();

    var leftheight = $('#left-box').height();
    var rightheight = $('#right-box').height();
    if (leftheight > rightheight) {
        $('#right-box').height(leftheight);
    }
    else {
        $('#left-box').height(rightheight);

    }
    //alert(leftheight + " " + rightheight);
    var zIndexNum = 20000; /* fix for IE7 (6?) Z-index bug. we set the zindex for all li and divs */
    //    $('li').each(function() {
    //        $(this).css('zIndex', zIndexNum);
    //        zIndexNum -= 5;
    //    });

    var zIndexNum = 10000;
    $('div').each(function() {
        $(this).css('zIndex', zIndexNum);
        zIndexNum -= 5;
    });

});
