$(document).ready(function(){
	
	$('#bubble_pre1, #bubble_pre2').hide();
	
	$('#bubble_pre1_link').hover(
	  function () {
	    $('#bubble_pre1').show();
	  },
	  function () {
	    $('#bubble_pre1').hide();
	  }
	);
	
	$('#bubble_pre2_link').hover(
	  function () {
	    $('#bubble_pre2').show();
	  },
	  function () {
	    $('#bubble_pre2').hide();
	  }
	);

});