$(document).ready(function(){
     
    $("#baseNavHome").hover(
      function () {
        $("#viewerPic").animate({ 
        top: "-120px"
      }, 1 );
    },
	  function () {
        $("#viewerPic").animate({
        top: "0px"
      }, 1 );
      }
    );
    $("#baseNavHealth").hover(
      function () {
        $("#viewerPic").animate({ 
        top: "-240px"
      }, 1 );
    },
	  function () {
        $("#viewerPic").animate({
        top: "0px"
      }, 1 );
      }
    );
    $("#baseNavAuto").hover(
      function () {
        $("#viewerPic").animate({ 
        top: "-360px"
      }, 1 );
    },
	  function () {
        $("#viewerPic").animate({
        top: "0px"
      }, 1 );
      }
    );
    $("#baseNavLife").hover(
      function () {
        $("#viewerPic").animate({ 
        top: "-480px"
      }, 1 );
    },
	  function () {
        $("#viewerPic").animate({
        top: "0px"
      }, 1 );
      }
    );
    $("#baseNavBusiness").hover(
      function () {
        $("#viewerPic").animate({ 
        top: "-600px"
      }, 1 );
    },
	  function () {
        $("#viewerPic").animate({
        top: "0px"
      }, 1 );
      }
    );
    

 });
    