/**
 * (en) other code using $ as an alias to the other library (for example mootools)
 * (de) Anderer Code der $ benutzt als Alias zu anderen Bibliotheken (zum Beispiel Mootools)
*/
jQuery.noConflict();
jQuery(document).ready(function($){
	$('.sgtip').mouseover(function() {
			if($(this).attr("alt") == "strachwitzgerhardbilder"){
				var tmpid = $(this).attr("id").substring(3);
				var innerText= $("."+tmpid).html();
				$('div.p-category-intro').fadeOut('fast', function() {
					$('div.p-category-intro').html(innerText);
					$('div.p-category-intro').fadeIn("fast");
				  });
			}
	});
});