$(function() {
	$('input, textarea').blur(function() {
		this.value = (this.value == "") ? this.title : this.value;
	});
	$('input, textarea').focus(function() {
		this.value = (this.value == this.title) ? '' : this.value;
	});
    $('#captcha-image').click(function() {
        this.src = 'securimage_show.php?sid=' + Math.random();
    });
});
