// preload images into browser
// linkedin button
var linkedInImage1 = new Image();
linkedInImage1.src = 'images/linkedIn.gif';
var linkedInImage2 = new Image();
linkedInImage2.src = 'images/linkedIn2.gif';

// contactAdept button
var contactImage1 = new Image();
contactImage1.src = 'images/contact_button.gif';
var contactImage2 = new Image();
contactImage2.src = 'images/contact_button2.gif';

//Testimonials button
var testimonialsImage1 = new Image();
testimonialsImage1.src = 'images/testimonials_button.gif';
var testimonialsImage2 = new Image();
testimonialsImage2.src = 'images/testimonials_button2.gif';

$(document).ready(function() {

// LinkedIn hover action
$('#linkedinGraphic').hover(
    function() {
      $('#linkedinGraphic').attr('src', linkedInImage2.src);
      },
    function() {
      $('#linkedinGraphic').attr('src', linkedInImage1.src);
      }); // end linkedIn Button hover()
      
// contact hover action
$('#contactImg').hover(
    function() {
      $('#contactImg').attr('src', contactImage2.src);
      },
    function() {
      $('#contactImg').attr('src', contactImage1.src);
      }); // end contact Button hover()      
      
// testimonials hover action
$('#testimonialsImg').hover(
    function() {
      $('#testimonialsImg').attr('src', testimonialsImage2.src);
      },
    function() {
      $('#testimonialsImg').attr('src', testimonialsImage1.src);
      }); // end testimonials Button hover()      

// Read More link - show/hide action

$('#readMore').click(
    function(evt) {
      $('#reco2').show();
      $('#nav').hide();
      $('#recipientsContent').hide();
      evt.preventDefault();
      });
      
$('#Close').click(
    function(evt) {
      $('#reco2').hide();
      $('#nav').show();
      $('#recipientsContent').show();
      $(document).scrollTop('0px');
      $('html').scrollTop('0px');
      evt.preventDefault();
      });      

 }); //end ready()
