/* <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 crossheader=document.getElementById? document.getElementById("flyin").style : document.all.flyin.style

function animatein(){
	if (parseInt(crossheader.right)<0) {
		var newRight = parseInt(crossheader.right)+85
		if (newRight > 0) 
			crossheader.right=0
		else
			crossheader.right= newRight+'px'
	} else{
		crossheader.right=0
		crossheader.fontStyle="normal"
		clearInterval(start)
	}
}

if (document.getElementById || document.all){
	document.getElementById('flyin').style['position'] = 'relative'
	document.getElementById('flyin').style['right'] = '-700px'
	start = setInterval("animatein()", 90)
}	


//</script>