/// <reference path="jquery-1.6.4.min-vsdoc.js" />
// Relatief pad vanaf main.js
var path = "/";

jQuery(document).ready(function () {

    jQuery("input.search-input").focus(function () {
        if (this.value == "Uw zoekterm...") {
            this.value = "";
        }
    });
    jQuery("input.search-input").blur(function () {
        if (this.value == "") {
            this.value = "Uw zoekterm...";
        }
    });

});

jQuery(window).load(function () {

});

// URL querystring inlezen
var urlParams = {};
(function () {
    var e,
        a = /\+/g,
        r = /([^&=]+)=?([^&]*)/g,
        d = function (s) { return decodeURIComponent(s.replace(a, " ")); },
        q = window.location.search.substring(1);

    while (e = r.exec(q))
        urlParams[d(e[1])] = d(e[2]);
})();
