function clickcount(id){
		$.post('clickcount.php', { menuid: id },
			function(data){
				if(data&&data==true)
					return true;
				else
					return false;
			});
}
