function selectTheme()
{
	themeBox = document.getElementById('themes');
	/*if($(themeBox).hide())
	{
		$(themeBox).show();
	}
	else
	{
		$(themeBox).hide();
	}*/

		if(themeBox.style.display == 'block')
		{
			themeBox.style.display = 'none';
		}
		else
		{
			themeBox.style.display = 'block';
		}
}