/* A TARGET */
(function($) {
  $.fn.target = function() {
    return this.each(function(index, elm) {
      if (substr($(this).attr("class"), 0, 7) == 'target-') {
        $(this).attr("target", substr($(this).attr("class"), 7));
      }
    });
  }
})(jQuery);

$(document).ready(function() {
  $("a").target();

  $("div.lang").bind("mouseover mouseout", function(evt) {
    if (evt.type == 'mouseover') {
      if (!$(this).hasClass('lang_selected')) {
        $(this).addClass("lang_over");
      }
    } else {
      if (!$(this).hasClass('lang_selected')) {
        $(this).removeClass("lang_over");
      }
    }
  });

  $("div.button").bind("click", function() {
    if ($("input[name='search_query']").val().length > 0) {
      window.location.href = '/search/'+ $("input[name='search_query']").val() +'/';
    }
  });
});