/**
 * File to implement the Google Custom Search Engine interface.
 * To make this facility compatible, the genric form points to the 
 * google server, and this changes it to our if the user has javascript enabled.
 *
 * Written by Simon Yeldon 14/03/2007
 * Amended by Daniel Wood 15/07/2009
 */
 
$(document).ready(function() {
  $(".googlecse").each(function() {
    $(this).attr('action', '/search/');
    $(this).children('#cof').val('FORID:11');
  })
});
