What does (e:MouseEvent = null) mean?

Hey … so im trying to work out some code :: and on this rollover state, I come across

private function onRollOver(e:MouseEvent):void {
			myFunction();
		}
private function myFunction(e:MouseEvent = null):void {		}

… so what does this null mean? … or what is it doing …

Simple - but necessary thanks!