var speed = "slow";
	function cv(o){if(o != null){try{if(o.value == 'Keyword')o.value = '';}catch(e){}}}
	function shm()
	{
		try
		{
		if($("#ddmenu").css("display") == "block"){$("#ddmenu").hide(speed);}
		else{$("#ddmenu").show(speed);}
		return false;
		}
		catch(e){;}
	}
	function sm()
	{
		try{
		if($("#ddmenu").css("display") == "none")$("#ddmenu").show(speed);
		return false;
		}catch(e){;}
	}
	var timer;
	var timetogo = 2000;
	function starth()
	{
		try{
		timer = window.setInterval(function()
		{
			$("#ddmenu").hide(speed);
			window.clearInterval(timer);
		}, timetogo);
		}catch(e){;}
	}
	function stoph()
	{
		try{
		window.clearInterval(timer);
		}
		catch(e){;}
	}
