			$(document).ready(function() {
				//comment...easy
				$('#live-comment input, #live-comment textarea').bind('blur keyup',function() {
				
					//show live
					$('#live-preview-display').show("fast");
					
					//comment
					$('#lp-comment').text($('#comment').val());
					$('#lp-comment').html($('#lp-comment').html().replace(/\n/g,'<br />'));
					
					//name & websites
					if($('#author').val()) {
						if($('#url').val() && /http:\/\/[A-Za-z0-9\.-]{3,}\.[A-Za-z]{3}/.test($('#url').val())) {
							$('#lp-name').html('<a href="' + $('#url').val() + '">' + $('#author').val() + '</a> schreibt:');
						}
						else {
							$('#lp-name').text($('#author').val() + ' schreibt:');
						}
					}
					

				});
			});
