// JavaScript Document
$(document).ready(function(){
  //Hide the tooglebox when page load
  $('.togglebox').hide();
  $('.rollover').mouseenter(function(){
    // slide toggle effect set to slow you can set it to fast too.
    $(this).children('.togglebox').slideToggle('slow');
    $('#callout p').replaceWith( "<p>" + ( $(this).children('.hide').text() ) + "</p>" );
  }).mouseleave(function(){
    $(this).children('.togglebox').slideToggle('fast');
    $('#callout p').text( " " );
  });
});
