I am doing it like this but it doesn't seems to work in ie7
if($(window).height() > 700){
$('body').css({'overflow-y':'hidden'});
}else{
$('body').css({'overflow-y':'visible','height':'700px'});
}
it does work in all other browsers
any idea why?