function swoosh(n,f) {
	if (document["movie"+n].CurrentFrame()>=f || document["movie"+n].CurrentFrame()==0) {
		document["movie"+n].GotoFrame(20);
		document["movie"+n].Play();
	}
	window.setTimeout("swoosh(2,120)", 4000);
}
if (navigator.userAgent.indexOf('MSIE 7.0') != -1 || navigator.userAgent.indexOf('Firefox') != -1 || navigator.userAgent.indexOf('Opera') != -1) {
	document.write('<EMBED NAME="movie2" SRC="swoosh.swf" Width=753 Height=216 swLiveConnect=TRUE QUALITY=HIGH TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" WMODE=TRANSPARENT><BR>');
	window.setTimeout("swoosh(2,120)", 500);
}
