﻿$(function() {
    
    
    $('#explorebox form fieldset input.form-text').focus(function() {
        if ($(this).val() == 'Enter a topic or keyword') {
            $(this).val("");
        }
    }).blur(function() {
        if ($(this).val() == "") {
            $(this).val('Enter a topic or keyword');
        }
    });

    $('.more').tooltip({
        position: 'top center'
    });
});
