// JavaScript Document
function $(a)
{
	return document.getElementById(a);	
}
function himg(sid,id,img,istr,count)
{
		for(i=1;i<=count;i++)
		{
			if(i==istr)
			{
				$(sid).src=id;
				$('img'+i).src=img+i+'_2.gif';
			}
			else
			{
				$('img'+i).src=img+i+'.gif';
			}
		}
}