/**
 * hover balloons for specialismen.php
 */
if (typeof(j) == 'undefined') j = jQuery.noConflict();

j(document).ready(function(){
	j('.btn_alpha').mouseenter(function(){
		j(this).parent().children('.balloon').show();
	}).mouseleave(function(){
		j(this).parent().children('.balloon').hide();
	});

});

