﻿$(document).ready(function() {
    //initjQuery();
    initInputBoxFunctions();
    $('#multi-ddm').dropDownMenu({ parentMO: 'parent-hover', childMO: 'child-hover' });
    // Init Function

    function initInputBoxFunctions() {
        $('input[class="inputBox"]').each(function() {
            var defaultSearchString = $(this).attr('value');
            $(this).attr('value', defaultSearchString);
            $(this).focus(function() {
                ($(this).attr('value') == defaultSearchString) ? $(this).attr('value', '') : $(this).select();
            }).blur(function() {
                if ($(this).attr('value') == '') { $(this).attr('value', defaultSearchString); }
            });
        });
    }
});
