jQuery().ready(function() {
	
	jQuery('.referenz-item').click(function() {	
		longForm = jQuery(this).find('.longform').html();		
		jQuery('.popup_content').html(longForm);	
		jQuery('.popup_wrapper').hide().fadeIn(300).find('.close').unbind().click(function() {
			jQuery('.popup_wrapper').hide();
		});	
	});
});
