/* <script language="JavaScript1.2">


Fly-in Header script (credit must stay enclosed)
By javascriptkit.com
For this and over 400+ JavaScripts,
Visit http://www.javascriptkit.com
*/


if (document.getElementById || document.all)
	var faller=document.getElementById? document.getElementById("mainFall").style : document.all.mainFall.style

function fallDown(){
	if (parseInt(faller.top)<0) {
		var newTop = parseInt(faller.top)+2
		if (newTop > 0) 
			faller.top=0
		else
			faller.top= newTop+'px'
	} else{
		faller.top=0
		faller.fontStyle="normal"
		clearInterval(start)
	}
}

if (document.getElementById || document.all)
	document.getElementById('mainFall').style['position'] = 'relative'
	document.getElementById('mainFall').style['top'] = '-18px'
	start = setInterval("fallDown()", 90)


//</script>