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