Еслия указать имя в переменной bb - не срабатывает, если напрямую kat1 - работает
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script>
$().ready(function() {
$('div').click(function() {
bb = $(this).attr("name");
bb = 'kat1';
alert(bb);
alert($("span[name=bb]").css("z-index"));
alert($("span[name=kat1]").css("z-index"));
});
})
</script>
</head>
<span name="kat1" style="background:red;position:absolute;z-index:-9999;width:85px;height:60px;"> </span>
<div name="kat1" style="background:blue;z-index:9999;width:85px;height:30px;"> </div>
</body>
</html>