// JavaScript Document
function Tabs(a,id,t)
{
	var op = a.parentNode;
	var o = document.getElementById(id);
	
	if(a.className=="a1")
	{
		window.location.href="wuhan_house_room_list_"+t+"_1.aspx";
	}
	else{
		for(i=0;i<op.childNodes.length;i++)
		{
			if(op.childNodes[i].tagName=="A")
			{
				if(op.childNodes[i].className=="a1")
				{
					op.childNodes[i].className="a2";
				}
			}
	
		}
		a.className ="a1";
		//a.href="wuhan_house_room_list_"+t+"_1.aspx";
		document.getElementById("Room1").style.display ="none";
		document.getElementById("Room2").style.display ="none";
		o.style.display ="block";
	}
}

function ShowImg(t)
{
	var o =	document.getElementById("RoomImg");
	o.src=t;
}
