$j = jQuery.noConflict();

$j(document).ready(function() {
	$j('a').focus(function(event) {
		$j(this).blur();
	});
});

