а если так:
<script type="text/javascript">
var divs = jQuery('.pobw'),
layer = jQuery('#layer');
jQuery(document).ready(function(){
// = Вешаем событие прокрутки к нужному месту
// на все ссылки якорь которых начинается на #
jQuery('a[href^="#"]').bind('click.smoothscroll',function (e) {
e.preventDefault();
var target = this.hash,
$target = jQuery(target);
jQuery('html, body').stop().animate({
'scrollTop': $target.offset().top - 100
}, 900, 'swing', function () {
window.location.hash = target;
divs.css('z-index',0);
jQuery(this).css('z-index',10);
layer.fadeIn('fast');
});
});
});
layer.click(function(){
jQuery(this).fadeOut('fast');
});
</script>
Затемнить я затемнил, как определить ID, на который клацнули?