﻿
/* ---------------------------------------------------------------------------------- */
/* ----- Functies: onLoad ----------------------------------------------------------- */
/* ---------------------------------------------------------------------------------- */

$(document).ready(function() {
  // Lightbox activeren
  $(".lightbox").lightbox();
  $("#overlay").css({ "opacity": "0.6" });
});


/* ---------------------------------------------------------------------------------- */
/* ----- Functies: Algemeen --------------------------------------------------------- */
/* ---------------------------------------------------------------------------------- */

/* Standaard-tekst in input verbergen onFocus */
function textFieldFocus(object, defaultValue) {
  if (object.value == defaultValue) {
    object.value = "";
  }
}

/* Standaard-tekst in input tonen onBlur */
function textFieldBlur(object, defaultValue) {
  if (object.value == "") {
    object.value = defaultValue;
  }
}

/* Zoekfunctie */
function zoek(zoekUrl, strNegeerwaarde) {
  if (document.getElementById("txtZoekwoorden").value.length > 0 && document.getElementById("txtZoekwoorden").value != strNegeerwaarde){
    window.location = zoekUrl + "?zoek=" + document.getElementById("txtZoekwoorden").value;
  }
  return false;
}
