<?php if ($this->preventDefault) : ?>
	<script type="text/javascript">
		$(document).ready( function () {
			$("#<?php echo $this->html_id; ?>").click( function(event) {
				event.preventDefault();
			});
		});
	</script>
<?php endif; ?>
<a href="<?php echo $this->href; ?>" target="<?php echo $this->target; ?>" class="<?php echo $this->css; ?>" id="<?php echo $this->html_id ?>"><?php echo $this->text; ?></a>