function addSmiley( str ) {
	document.guestbookForm.gbContent.value = document.guestbookForm.gbContent.value + ' ' + str + ' ';
	document.guestbookForm.gbContent.focus();
}

path = 'http://gastenboek.dynamisite.nl/smileys/';
names = new Array( "smiley", "wink", "laugh", "grin", "tongue", "cool", "sad", "angry", "embarrassed", "huh", "lipsealed", "shocked", "undecided", "angel" );
codes = new Array( ":)", ";)", ":D", ";D", ":P", "B)", ":(", "]:(", ":S", "?:(", ":x", ":o", ":-/", "o:)" );

for( i=0; i<names.length; i++ ) {
	document.write( "<a onClick='addSmiley(\""+codes[i]+"\")'><img src='"+path+names[i]+".gif' alt='"+names[i]+"' title='"+codes[i]+"' style='cursor:hand;'></a> " );
}
