jQuery(document).ready(function($) {
  
		 jQuery('div#callout1').hover(function() {
        jQuery('div#callout1text').fadeIn('fast');
		 },
		 function() {
        jQuery('div#callout1text').fadeOut('fast');
		 });
   
   		 jQuery('div#callout2').hover(function() {
        jQuery('div#callout2text').fadeIn('fast');
		 },
		 function() {
        jQuery('div#callout2text').fadeOut('fast');
		 });
     jQuery('div#callout3').hover(function() {
        jQuery('div#callout3text').fadeIn('fast');
		 },
		 function() {
        jQuery('div#callout3text').fadeOut('fast');
		 });
   

});


