function clearme(formItem, keyword)
{ 
	if (formItem.value == keyword) formItem.value = ''; 
	formItem.style.color = "black";
}

function firstChildren()
{
    $$('ul li:first-child').addClass('firstchild');
    $$('ul li:last-child').addClass('lastchild');
}