$(document).ready( function() {
	$('#shoutboxForm .nick').focus( function(e) {
        if ($(this).val() == 'nick') {
            $(this).val('');
        }
    });
    $('#shoutboxForm .nick').blur( function(e) {
        if ($(this).val() == '') {
            $(this).val('nick');
        }
    });

	$('#shoutboxForm .verify').focus( function(e) {
        if ($(this).val() == 'current year?') {
            $(this).val('');
        }
    });
    $('#shoutboxForm .verify').blur( function(e) {
        if ($(this).val() == '') {
            $(this).val('current year?');
        }
    });
    
    $('#shoutboxForm .message').focus( function(e) {
        if ($(this).val() == 'message') {
            $(this).val('');
        }
    });
    $('#shoutbox .message').blur( function(e) {
        if ($(this).val() == '') {
            $(this).val('message');
        }
    });
    
});
