Андрей38, начинай уже делать нормальные примеры, не ленись...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
</style>
<script type="text/javascript">
</script>
</head>
<body>
<div id='N'> xxxx</div>
<div id='M'> yyyy</div>
<div id='K'> zzzz</div>
<script type="text/javascript">
$('div').each(function(){
var top=$(this).offset().top;
if (top<40) {
alert(this.id)
};
});
</script>
</body>
</html>