
//tween effect
function moveUp(el,height){
$(el).tween('top',height+'px');
}
function moveDown(el,height){
$(el).tween('top',height+'px');
}