function scrollWin(divID, speed){
  if (typeof speed == "undefined") {
    speed = 1000;
  }
  if($.browser.opera){
    $('html').animate({scrollTop: $('#'+divID).offset().top}, speed);
  } else $('html,body').animate({scrollTop: $('#'+divID).offset().top}, speed);
}
