jQuery.noConflict();
jQuery(document).ready(function(){
	
	jQuery('.kommentar-right').toggle(
		function(){
			jQuery(this).parent().parent().next('.comment-wrap').show('slow');
		},
		function(){
			jQuery(this).parent().parent().next('.comment-wrap').hide('slow');
		}
	);
	
	if(jQuery('.feedback').hasClass('true'))
		alert('Ihre Nachricht wurde erfolgreich versendet!');
	
});
