﻿
function onDemoMouseIn(img)
{
	img.src = "images/pages/demo/buttonro.jpg";
	showHand(img);
}

function onDemoMouseOut(img)
{
	img.src = "images/pages/demo/button.jpg";
	hideHand(img);
}


function onDemoTextIn(txt)
{
	txt.style.color = "red";
	showHand(txt);
}

function onDemoTextOut(txt)
{
	txt.style.color = "black";
	hideHand(txt);
}
