
$(document).ready(function(){
	if($('.specialform').length) {
		$.post('/gethash.asp?entry_id=' + $('input[name=entry_id]').val(), null, function(data) {
			$('input[name=hash]').val(data);
		});

		$('.specialform').attr('action', $('input[name=postto]').val());
	}
});
