$(document).ready(function() {
    $('.openTooltip').hover(
    function () {
    	$(this).next('.tooltip').stop(true,true).hide().fadeIn('fast');
    },
    function () {
    	$(this).next('.tooltip').fadeOut('fast');
    }
    );
});