// JavaScript Document
////////Slide up and down
var temp = true;
function showHide(cat)
{
	if (!temp)
	{
		$('#category').slideUp();
		
		cat.innerHTML = "<img src='./index_files/icon_play.jpg' border='0' align = 'right' >";
	}
	else
	{
		
		$('#category').slideDown();
		
		cat.innerHTML = "<img src='./index_files/icon_down.jpg' border='0' align = 'right'>";
	}
	temp = !temp;	
}

////////////////////////////////////////////////

////////////////password written field/////////
function changeBox() 
{
  document.getElementById('div1').style.display='none';
  document.getElementById('div2').style.display='';
  document.getElementById('password').focus();
}
function restoreBox() 
{
	if(document.getElementById('password').value=='')
	{
	  document.getElementById('div1').style.display='';
	  document.getElementById('div2').style.display='none';
	}
}
////////////////////////////////////////////////////////////


