/**
 * @author gtq
 */
$(function(){
	$("map[name=patlib] area").mouseover(function() {
		var section = $(this).attr('name');
		$.get('articleLibrary_files/static/desc_patlib_' + section + '.htm', function(data, textStatus) {
			$(".tips .desc").html(data);
		});
	});

	$("map[name=patlib] area").mouseout(function() {
			$(".tips .desc").html("");		
	});


});

