
 $(document).ready(function(){

 	// text hint on form elements
	$('input[title!=""]').hint();
	$('textarea[title!=""]').hint();

	// enable submit button
	$('#submit').click(function(e){
			$('#commentform').submit();
			return false;
	});

 });


