var spd = 500;
$(document).ready(function(){
  helpwin();
  scrollevent();
});
//scrollEvent + select change
function scrollevent(){
  $("#selectList select#optionList").change(function(e){
    e.preventDefault();
    var selectedObj = {
      id   : $(this).children("option[@selected]").attr("id"),
      v  : $(this).children("option[@selected]").attr("value"),
      text : $(this).children("option[@selected]").text()
    };
    var tarDl = $('dt#'+selectedObj["v"]).parent("dl");
    $.scrollTo(tarDl,spd);
  });
  $('a[@href="#top"]').click(function(e){
    e.preventDefault();
    $.scrollTo('#gsn_wrapper',spd);
  });
  $("#gsn_guidemenu a").click(function(e){
    e.preventDefault();
    $.scrollTo($(this).attr("href"),spd);
  });
}
// toggle helpwindow
function helpwin(){
  $(".helptoggle,#helpWin h4 a").click(function(){
    $("#helpWin").toggle();
  });
}
