$(document).ready(function() {
  $('.mbam').click(function() { window.location.href = '/mindbench-active-media-bv'; });
  $('.mbis').click(function() { window.location.href = '/mindbench-information-services-bv'; });

  $("#googlemaps").attr("target", "_blank");
  $('a[rel=external]').each(function(i){
    this.target = '_blank';
  });

  $('.standout').fadeIn('slow');

  $('.photoalbum a').colorbox();

  $("#query").attr("placeholder", "Zoeken...");
  $('input[placeholder],textarea[placeholder]').placeholder();

//search autocomplete
  $('#query').autocomplete({
    source: function( request, response ) {
   $.getJSON( '/sfLucene/autocomplete', {
     term: request.term.split(' ').pop()
   }, response );
    },
    search: function() {
   // custom minLength
   var term = this.value.split(' ').pop();
   if ( term.length < 2 ) {
     return false;
   }
    },
    focus: function() {
   return false
    },
    select: function(event, ui) {
   var s = this.value.split(' ');
   s.pop();
   s.push(ui.item.value);
   s.push('');
   this.value = s.join(' ');
   return false;
    }
  });

});
