﻿// Copyright 2010 Microsoft Corporation
// Scripts to support the SearchControl - requires jQuery.js and UIExtensions.js

/// <summary>This will execute when the DOM is ready</summary>
$(document).ready(function() {
    // adds watermark effect to the textbox
    if ($(".searchBoxText").val() == searchWatermark) {
        $(".searchBoxText").watermark();
    }
});


