function IncludeScrollerImages(pathPrefix)
{
if (document.images)
{
   Up_Active = new Image();
   Up_Active.src = pathPrefix + "images/scroll_buttons/up_on.gif";

   Up = new Image();
   Up.src = pathPrefix +  "images/scroll_buttons/up.gif";
   
   Down_Active = new Image();
   Down_Active.src = pathPrefix +  "images/scroll_buttons/down_on.gif";

   Down = new Image();
   Down.src = pathPrefix +  "images/scroll_buttons/down.gif";

   Left_Active = new Image();
   Left_Active.src = pathPrefix +  "images/scroll_buttons/left_on.gif";

   Left = new Image();
   Left.src = pathPrefix +  "images/scroll_buttons/left.gif";

   Right_Active = new Image();
   Right_Active.src = pathPrefix +  "images/scroll_buttons/right_on.gif";

   Right = new Image();
   Right.src = pathPrefix +  "images/scroll_buttons/right.gif";   
   
   BackToTop_Active = new Image();
   BackToTop_Active.src = pathPrefix +  "images/scroll_buttons/back_to_top_on.gif";

   BackToTop = new Image();
   BackToTop.src = pathPrefix +  "images/scroll_buttons/back_to_top.gif"; 

   Timeline_Active = new Image();
   Timeline_Active.src = pathPrefix +  "images/scroll_buttons/timeline_on.gif";

   Timeline = new Image();
   Timeline.src = pathPrefix +  "images/scroll_buttons/timeline.gif"; 
}
}