jQuery(document).ready(function($) {
        $('label[for="searchinput"],label[for="addressInput"]').click(function() {$('#' + $(this).attr('for')).focus();});          
        $('input#searchinput,input#addressInput').focus(function() {
            if ($(this).val() == "") {
            	$('label[for="' + $(this).attr('id') + '"]').fadeTo(0,.33);
            }            
        }).blur(function() {
            if ($(this).val() == "") {
                $('label[for="' + $(this).attr('id') + '"]').fadeTo(0,1);
            }
        }).keyup(function() {
            if ($(this).val() != "") {
                $('label[for="' + $(this).attr('id') + '"]').hide();
            } else {
                $('label[for="' + $(this).attr('id') + '"]').show();
            }
        }).keydown(function() {
            $('label[for="' + $(this).attr('id') + '"]').hide();
        });
});
