Может тебе поможет мое чудовище.
Ширина пунктов меню равная .При размере браузера менее 400рх 3 блока убираются.Можно сделать постепенное скрытие по одному блоку
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Документ без названия</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
font: 11px "Trebuchet MS", Verdana, Tahoma, sans-serif;
}
ul {
list-style: none;
text-align: justify;
text-justify: newspaper;
line-height: 0;
}
li {
display: inline-block;
vertical-align:top;
text-align: center;
background: red;
}
li.helper {
width: 100%;
background: none;
}
</style>
<!--[if lte IE 7]>
<style type="text/css">
ul {
width: 99.9%;
text-align-last: justify;
}
li {
display: inline;
}
li.helper {
display: none;
}
</style>
<![endif]-->
</head>
<body>
<ul>
<li>home</li>
<li>about us</li>
<li>contacts</li>
<li>home</li>
<li>about us</li>
<li>contacts</li>
<li> link</li>
<li class="helper"></li>
</ul>
<script>
function handler(){
ul=document.getElementsByTagName('ul')[0]
if(document.body.clientWidth<400){
ul.getElementsByTagName('li')[6].style.display='none'
ul.getElementsByTagName('li')[5].style.display='none'
ul.getElementsByTagName('li')[4].style.display='none'
}else{
ul.getElementsByTagName('li')[6].style.display=''
ul.getElementsByTagName('li')[5].style.display=''
ul.getElementsByTagName('li')[4].style.display=''
}
}
if(window.addEventListener){
window.addEventListener('resize',handler,false)
}
else{
window.attachEvent('onresize',handler)
}
</script>
</body>
</html>
Работает везде даже в ишаке