$(document).ready(function() {
  $('.walkthrough_hint .olhint').slideUp();
  $('.walkthrough_hint .toggle_hint').click(function(){
    $(this).toggleClass("hide_hint");
    $(this).next('.olhint').slideToggle("slow");
    return false;
  });
});

function toggle_screen(a){
  $('#'+a).toggle();
  return false;
}
function toggle_screen2(a,b){
  var tmp = $('#'+a);
  if(tmp.css('display')=='none')
  {
    $('#'+b).attr('src', '/img/hide.png');
  }
  else
  {
    $('#'+b).attr('src', '/img/show.png');
  }
  $('#'+a).toggle();
  return false;
}
