// JavaScript Document
function getObj (obj)
	{
		var temp=document.getElementById(obj);
		return temp;
	}
	
	function mouseClick(temp)
	{
	     switch(temp)
	    {
	        case 1:
	            getObj("obj_1").src="/newEshop/Images/Main/zba.gif";
	            getObj("obj_2").src="/newEshop/Images/Main/clqc.gif";
	            getObj("obj_3").src="/newEshop/Images/Main/hdss.gif";
	        break;
	        case 2:
	            getObj("obj_1").src="/newEshop/Images/Main/zb.gif";
	            getObj("obj_2").src="/newEshop/Images/Main/clqca.gif";
	            getObj("obj_3").src="/newEshop/Images/Main/hdss.gif";
	        break;
	        case 3:
	            getObj("obj_1").src="/newEshop/Images/Main/zb.gif";
	            getObj("obj_2").src="/newEshop/Images/Main/clqc.gif";
	            getObj("obj_3").src="/newEshop/Images/Main/hdssa.gif";
	        break;
	        default:
	            getObj("obj_1").src="/newEshop/Images/Main/zb.gif";
	            getObj("obj_2").src="/newEshop/Images/Main/clqc.gif";
	            getObj("obj_3").src="/newEshop/Images/Main/hdssa.gif";
	        break;
	    }
		for (var i=1;i<=3;i++)
		{
			if (i==temp)
			{
				getObj("obj_d_"+i).className="tablistpart_bottom";
			}
			else
			{
				getObj("obj_d_"+i).className="tablistpart_bottom_display";
			}
		}
	}