﻿$("#NoScript").remove();
function equalHeight(group) {
    var tallest = 0;
    group.each(function() {
        var thisHeight = $(this).height();
        if (thisHeight > tallest) { tallest = thisHeight; }
    });
    group.height(tallest);
}
function getParameterByName(name) {
    name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
    var regexS = "[\\?&#]" + name + "=([^&#]*)";
    var regex = new RegExp(regexS);
    var results = regex.exec(window.location.href);
    if (results == null)
        return "";
    else
        return results[1];
}
$(document).ready(function() {
    $("input.quickSearchField").focus(function() {
        if (this.value == "Search here")
            this.value = "";
    });
    $("input.quickSearchField").blur(function() {
        if (this.value == "")
            this.value = "Search here";
    });
});

