// set up the focus blur inputs

$().ready(function(){
	$('.focusblur').focus(function() {
		if ($(this).val() == $(this).attr('defaultValue')) {
		// if it's the default value, empty it
			$(this).val('');
		}
	});
	$('.focusblur').blur(function() {
		if ($(this).val() == '') {
		// if it's empty, set to default
			$(this).val($(this).attr('defaultValue'));
		}
	});

});