function quickLink(e, str)
{
 	$('div.quickLink').remove();
 	
	var eTop = $(e).offset().top + $(e).offset().height;
	helper = $('<div class="quickLink">'+str+'<p class="close" onclick="quickLink_close(this.parentNode);">schließen</p></div>')
		.css({ position: 'absolute', zIndex: 3000, left: $(e).offset().left+'px', top: eTop+'px' })
		.appendTo('body');
		
	if($.browser.msie) {
		$('select').hide().addClass('hide');
	}	
}
function quickLink_close(e)
{
	$(e).remove();
	
	if($.browser.msie) {
		$('select.hide').show().removeClass('hide');
	}	
}
