$(document).ready(function() {
    /* Search box styling */
    $('input[type="text"]').focus(function() {
        $(this).css("color", "#6f6f6f");
        if (this.value == this.defaultValue) {
            this.value = '';
        }});
});

