$(document).ready(function() {
        
        // Form input hide/display default text on focus/blur
        $("#s, #mailinglist input").focus(function() {
                if(this.value == this.defaultValue) {
                        this.value = "";
                }
        }).blur(function() {
                if(!this.value.length) {
                        this.value = this.defaultValue;
                }
        });     
                
});

jQuery("*:first-child").addClass("firstChild")

$(document).ready(function() {
	$("#searchsubmit").attr('value', '');
});
