$(document).ready( function() {
	$('li').hover( function() {
		if ($(this).find('.pop').css('display') == 'none') {
			$(this).find('.pop').fadeIn('slow');
		}
	}, function() {
		$(this).find('.pop').stop(true, true).hide();
	});
});
