QUOTE(ErinE @ Nov 11 2005, 01:57 PM)
QUOTE(jerryClement @ Nov 11 2005, 11:57 AM)
Search engine spiders cannot read Flash at all. If you want rollovers like yours use Javascript. The only problem with using a flash navigation is that the spider won't read any links within flash.
[right][snapback]96302[/snapback][/right]
I actually read a recent article that states that javascript is harder for spiders to get through than flash, but this depends on the spider, your code, your site's link popularity and so much more. Take from it what you will. Here is the link:
Optimizing a Javascript Site for Search Engines from
SEO Chat.
[right][snapback]96315[/snapback][/right]
Actually it's not so much if you use a reference javascript file (.js) as oppose to having all your script on the actual page. Spiders will favor links towards the top of the code without having to search through a bunch of functions to get the info it wants.
Use this code in your
CODE
<head>
tags to reference a javascript file:
CODE
<script language="JavaScript" type="text/javascript" src="filename.js"></script>
Then create a text file (or use Dreamweaver) with
CODE
// JavaScript Document
on the first line and dump all your scripts below it, omitting all the
CODE
<script>
tags. You have now removed 10-20 lines of code that a spider will need to search through.
You have one other option, which is technically better and faster than Javascript and that is CSS Rollovers. Check out
http://www.w3schools.com for an extensive CSS reference and live tutorials on multiple CSS functions.