			jQuery(document).ready(function() {
				jQuery('.hashString').live('click', function(){
					var t = $(this);
					if (t.hasClass('authorized') && !isAuthorized()) {
						t.after('<a class="dn" href="#auth"></a>').next().fancybox(fancyOptions).click(function(){$(this).remove();}).click();
					} else {
						window.location = Base64.decode($(this).attr('rel'));
					}
				}).live('mousedown', function(b){
					if (b.which==2) { // 						
						window.open(Base64.decode($(this).attr('rel')));
					}
				});
			});	

