function swap(id,im1,im2,op)
{	if(op=='over')
	{
		document.getElementById(id).style.background  = "url('button/"+im2+"')";
	}
	else
	{
		document.getElementById(id).style.background = "url('button/"+im1+"')";
	}	
}
