jQuery(document).ready(function(){
	$("#accordion").accordion({
		autoHeight: false,
		active: '.selected'
	});
	$("#newsletter-remove").click(function(){
		$("#newsletter-form .action").html('<input type="hidden" name="newsletter-action" value="remove" />');
		$("#newsletter-form").submit();
	});
	$('#newsletter-form .textfield').bind('focus', function(){
        if( this.value == this.defaultValue ) {
            this.value = "";
        }
    });
    $('#newsletter-form .textfield').bind('blur', function(){
        if( !this.value.length ) {
            this.value = this.defaultValue;
        }
    });
    
    $("#searchfield").click(function(){ $(this).attr({ value: '' }); });
    
    $(".gsc-input").click(function(){ $(this).attr({ value: '' }); });
});