﻿// JScript File

function showBorder(element)
{
   element.style.border = "5 solid rgb(0,0,0)";
   element.style.borderTopStyle = "none";
   element.style.borderBottomStyle = "none";
   element.style.cursor = "pointer";
   element.style.cursor = "hand";
}

function hideBorder(element)
{
   element.style.border = "none";
   element.style.cursor = "default";
}

function showBack(element)
{
	element.src = "images/pages/VirtualAnatomy/backro.jpg"; 
}

function hideBack(element)
{
	element.src = "images/pages/VirtualAnatomy/back.jpg"; 
}


function showNext(element)
{
	element.src = "images/pages/VirtualAnatomy/Nextro.jpg"; 
}

function hideNext(element)
{
	element.src = "images/pages/VirtualAnatomy/Next.jpg"; 
}

function showHand(control)
{
	control.style.cursor = "pointer";
	control.style.cursor = "hand";
}

function hideHand(control)
{
	control.style.cursor = "default";
}
