﻿$(document).ready(function () {
    $("input:text").focus(function () {
        $(".input-suggestion-textbox").remove();
        $title = $(this).attr("title");
        if ($title != '') {
            $beer = $('<div class="input-suggestion-textbox"><p>' + $title + '</p></div>');
            $beer.insertAfter($(this));
            $beer.width($(this).width() - 8);
        }
    }).blur(function () {
        $(".input-suggestion-textbox").remove();
    });
});
