//Add the separator between the author avatars (our thinkers)
jQuery(document).ready(function() {
	jQuery('.author-list').children(':odd').not(':last').after('<div class="separator"></div>');
});

function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value = ""
} 
function addText(thefield){
	if(thefield.value == '') {
		thefield.value = thefield.defaultValue;
	}
}
