// JavaScript Document
var flag = 1;
function tabShow(no)
{
	
	if(flag==1)
	{ 
		for(i=1;i<=2;i++)
		{
			
		document.getElementById('tab'+i).style.display = 'none';
		document.getElementById('img'+i).src = 'images/up_arrow.gif';
		}
		document.getElementById('tab'+no).style.display = 'block';
		document.getElementById('img'+no).src = 'images/down_arrow.gif';
		flag = 0;
	}
	else
	if(flag==0)
	{
			
			if(document.getElementById('tab'+no).style.display == 'block' && document.getElementById('img'+no).src == 'http://www.gulfoilindia.com/images/down_arrow.gif')	
			{
					//alert(no)
					document.getElementById('tab'+no).style.display = 'none';
					document.getElementById('img'+no).src = 'images/up_arrow.gif';
			}
		else
		{
			//alert('hhhh');
			for(i=1;i<=2;i++)
			{
				document.getElementById('tab'+i).style.display = 'none';
				document.getElementById('img'+i).src = 'images/up_arrow.gif';
			}
			document.getElementById('tab'+no).style.display = 'block';
			document.getElementById('img'+no).src = 'images/down_arrow.gif';
			
		}
			
		flag=1;
	}
	else
	{
		
	}
	
}
