$(document).ready( function(){
    var ids = ['#top_query', '#bottom_query', '#center_query', '#artid', '#center_artid'];
    for (var i in ids) {
        $(ids[i]).bind('blur', function () {
            if ($(this).attr('value') == '') $(this).attr('value', $(this).attr('hint'));
        });
        $(ids[i]).bind('focus', function () {
            if ($(this).attr('value') == $(this).attr('hint')) $(this).attr('value', '');
        });
    }

    $('form[action*=search]').each(function () {
        $(this).bind('submit', function () {
            var a = $(this).find('input[name=query]');
            var b = $(this).find('input[name=artid]');
            if ($(a).attr('value') == $(a).attr('hint')) $(a).attr('value', '');
            if ($(b).attr('value') == $(b).attr('hint')) $(b).attr('value', '');
        })
    })
})
