function mouse_over(id,name)
{
var img_id,img_name,show_str;
img_id=id;
img_name=name;
show_str="document.images['"+id+"'].src='"+img_name+"'";
eval(show_str);
}

function mouse_out(id,name)
{
var img_id,img_name,show_str;
img_id=id;
img_name=name;
show_str="document.images['"+id+"'].src='"+img_name+"'";
eval(show_str);
}

function mouse_down(id,name)
{
var img_id,img_name,show_str;
img_id=id;
img_name=name;
show_str="document.images['"+id+"'].src='"+img_name+"'";
eval(show_str);
}

function chanpic(id,name)
{
var img_id,img_name,show_str;
img_id=id;
img_name=name;
show_str="document.images['"+id+"'].src='"+img_name+"'";
eval(show_str);
}

function itemXon(itemN){//parameter eg.:item01
var itemX=itemN;
var xitemstr="";
var midshow="";
var xitemcur="";
var i=1;
for(i=1;i<=4;i++){
	xitemstr="document.images['item0"+i+"'].src='images/index/ind08_item0"+i+"_p01_off.jpg'";
	eval(xitemstr);	
	}
xitemcur="images/index/ind08_"+itemX+"_p01_on.jpg";
chanpic(itemX,xitemcur);
midshow="images/index/ind08_"+itemX+"_p03.jpg";	
chanpic('showx',midshow);
}

function itemXout(){
var xitemstrout="";
var i=1;
for(i=1;i<=4;i++){
	xitemstrout="document.images['item0"+i+"'].src='images/index/ind08_item0"+i+"_p01_off.jpg'";
	eval(xitemstrout);	
	}
chanpic('showx','images/index/ind08_lrow03_p02.jpg');
}




