$(function(){
	$('[href]')
		.not('a,[target]')
		.css({cursor: 'pointer'})
		.click(function(e){
			var href = $(this).attr('href');
			if(e.metaKey){
			 	window.open(href);
			}else{
			 	window.location = href;
			}
			return false;
		});
});
