// JavaScript Document

function openMenu(target) {
	$(target).set('tween', {
        duration: 150,
        transition: Fx.Transitions.Expo.easeOut // This could have been also 'bounce:out'
    }).tween('opacity', '1');
}
function closeMenu(target) {
	$(target).set('tween', {}).tween('opacity', '0');
}

