// 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";

links_out = new Image;
links_up = new Image;
links_out.src = imgpath +"links.gif";
links_up.src = imgpath +"links-up.gif";

cu_out = new Image;
cu_up = new Image;
cu_out.src = imgpath +"cu.gif";
cu_up.src = imgpath +"cu-up.gif";




pyr_out = new Image;
pyr_up = new Image;
pyr_out.src = imgpath +"pyr.gif";
pyr_up.src = imgpath +"pyr-up.gif";

sj_out = new Image;
sj_up = new Image;
sj_out.src = imgpath +"sj.gif";
sj_up.src = imgpath +"sj-up.gif";

stn_out = new Image;
stn_up = new Image;
stn_out.src = imgpath +"stn.gif";
stn_up.src = imgpath +"stn-up.gif";

pj_out = new Image;
pj_up = new Image;
pj_out.src = imgpath +"pj.gif";
pj_up.src = imgpath +"pj-up.gif";

adv_out = new Image;
adv_up = new Image;
adv_out.src = imgpath +"adv.gif";
adv_up.src = imgpath +"adv-up.gif";

rd_out = new Image;
rd_up = new Image;
rd_out.src = imgpath +"rd.gif";
rd_up.src = imgpath +"rd-up.gif";

cdj_out = new Image;
cdj_up = new Image;
cdj_out.src = imgpath +"cdj.gif";
cdj_up.src = imgpath +"cdj-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;
}