function Showtab(n)
{	
    for(i=1;i<=3;i++)
    {
    var menu=document.getElementById("tab"+i);
    var con=document.getElementById("tab_content"+i);
    menu.className=i==n?"tab_current":"";
    con.style.display=i==n?"block":"none";
    }
} 



function Rtab(m)
{
	for(j=1;j<=3;j++)
	{
	document.getElementById("recommend"+j).style.display="none";
	}
	document.getElementById("recommend"+m).style.display="block";
}

