$(document).ready(function() {
  $('.bubble1').hide();
  $('.bubble2').hide();
   
 	$('#toggle1').mouseover(function() {
 		$('div.bubble1').show();
	});
 	$('#toggle2').mouseover(function() {
 		$('div.bubble2').show();
	});
	
	 $('#toggle1').mouseout(function() {
 		$('div.bubble1').hide();
	});
 	$('#toggle2').mouseout(function() {
 		$('div.bubble2').hide();
	});
   
   });
