function moveandshowdiv(strImgID,id)
{
	for(i = 1; i < 4; i++)
	$("#" + strImgID +  i).css("display","none") ;		
	$("#" + strImgID + id).fadeIn(1000);	
}

