// Splash Screen

imgpath = "img/"


//Top menu

imgpath = "img/top/menu/"

home_out = new Image;
home_up = new Image;
home_out.src = imgpath +"home.gif";
home_up.src = imgpath +"home-up.gif";

uc_out = new Image;
uc_up = new Image;
uc_out.src = imgpath +"uc.gif";
uc_up.src = imgpath +"uc-up.gif";

gd_out = new Image;
gd_up = new Image;
gd_out.src = imgpath +"gd.gif";
gd_up.src = imgpath +"gd-up.gif";

ea_out = new Image;
ea_up = new Image;
ea_out.src = imgpath +"ea.gif";
ea_up.src = imgpath +"ea-up.gif";

cu_out = new Image;
cu_up = new Image;
cu_out.src = imgpath +"cu.gif";
cu_up.src = imgpath +"cu-up.gif";



//Left menu

imgpath = "img/block/";

lmb_out = new Image;
lmb_up = new Image;
lmb_out.src = imgpath +"bg1.gif";
lmb_up.src = imgpath +"ball.gif";



// The Function
function ChangeImage(name,img)
{
 name.src = img.src;
}
