// Fixes z-index bug in IE for relative positioned elements - should only be served to IE via conditional comments in head
//$(function() {
//    if($.browser.msie){
//        $('div').each(function(i) {
//            if($(this).css('position')!='absolute') $(this).css('zIndex', 1000 - (i * 10));
//        });
//    }
//})
