$('#thebutton').click(function(){
var items = $
(
'#menu > li'
);
$
(items
[
0
]
).
delay
(
).
animate
(
{
"opacity":
"1",
"marginTop":
"2px"
},
400
);
$
(items
[
1
]
).
delay
(
200
).
animate
(
{
"opacity":
"1",
"marginTop":
"2px"
},
400
);
$
(items
[
2
]
).
delay
(
400
).
animate
(
{
"opacity":
"1",
"marginTop":
"2px"
},
400
);
$
(items
[
3
]
).
delay
(
600
).
animate
(
{
"opacity":
"1",
"marginTop":
"2px"
},
400
);
$
(items
[
4
]
).
delay
(
800
).
animate
(
{
"opacity":
"1",
"marginTop":
"2px"
},
400
);
$
(items
[
5
]
).
delay
(
1000
).
animate
(
{
"opacity":
"1",
"marginTop":
"2px"
},
400
);
$
(
'#thebutton'
).
animate
(
{
"opacity":
"0",
"marginTop":
"-300px"
},
500
);
}
);