<!-- place file with site -->
function DisplaySalutation()
			{
				var		now = new Date();
				var		iHour = now.getHours();
				
				if ( iHour < 12 )
					document.write( "Good Morning from Five Star Baits" );
				else if ( iHour >= 12 && iHour < 18 )
					document.write( "Good Afternoon from Five Star Baits" );
				else
					document.write( "Good Evening from Five Star Baits" );
			}