
function fadeOut(el){
    el = $(el);
    el.set('tween',{duration: 2000});
    el.tween('opacity', 0);
}




