function appear(id)
{
	var appear = new Effect.Appear(id,{duration:.5});
}

Event.observe(window,'load',function(){
	appear('feature');
});
