var zoomDirection = "in";

$(document).ready(function() {
  /*
   * Haku-kenttä
   *
   */
  $(".search input").focus(function() {
    if ($(this).val() == "Hae") $(this).val(""); else $(this).select();
  });

  $(".searchButton").click(function() {
    $("#search").submit();
  });

  
  /*
   * Sivun tulostus
   *
   */
  $(".print").click(function() {
    window.print();
  });


  /*
   * Tekstin zoom
   *
   */
  $(".zoom").click(function() {
    if (zoomDirection == "in") {
      $(this).addClass("zoomOut");

      $(".columnContent > *, .sidebarImageText p").each(function() {
        $(this).css("font-size", (parseInt($(this).css("font-size")) + 4) + "px");
        $(this).css("line-height", (parseInt($(this).css("line-height")) + 4) + "px");
      });
      zoomDirection = "out";
    } else {
      $(this).removeClass("zoomOut");

      $(".columnContent > *, .sidebarImageText p").each(function() {
        $(this).css("font-size", (parseInt($(this).css("font-size")) - 4) + "px");
        $(this).css("line-height", (parseInt($(this).css("line-height")) - 4) + "px");
      });
      zoomDirection = "in";
    }
  });
});
