// JavaScript Document
function mouseOver(img,ne)
{
	if(img == 'movie_img')
		document.movie_img.src = ne;
	else if(img == 'ac_img')
		document.ac_img.src = ne;
	else if(img == 'dg_img')
		document.dg_img.src = ne;
	else if(img == 'hk_img')
		document.hk_img.src = ne;
	else if(img == 'lo_img')
		document.lo_img.src = ne;
	else if(img == 'pt_img')
		document.pt_img.src = ne;
	else if(img == 'uz_img')
		document.uz_img.src = ne;
}
function mouseOut(img,old)
{
	if(img == 'movie_img')
		document.movie_img.src = old;
	else if(img == 'ac_img')
		document.ac_img.src = old;
	else if(img == 'dg_img')
		document.dg_img.src = old;
	else if(img == 'hk_img')
		document.hk_img.src = old;
	else if(img == 'lo_img')
		document.lo_img.src = old;
	else if(img == 'pt_img')
		document.pt_img.src = old;
	else if(img == 'uz_img')
		document.uz_img.src = old;
}