Ok, the more I problem solve this issue the weirder it gets. I have figured out that the problem is with the list its self. To be more specific it is the number of lines or items in the list. If I limit the list to somewhere around 17 the problem does not happen. Over that and you start seeing the random loading anomoly. What the *&^%. Maybe a height issue??? Am I missing something somewhere. Here is the exact div code I am using
<div id="featured_charter_list">
<div class="featured_charter_column"><h1><a href="/featured-jet-charter/Private-Jet-Charter-flights-to-London-England.php">Private Jet Charter flights to London, England</a></h1></div>
<div class="featured_charter_column"><h1><a href="/featured-jet-charter/Private-Jet-Charters-to-Salt-Lake-City-Utah.php">Private Jet Charters to Salt Lake City Utah</a></h1></div>
<div class="featured_charter_column"><h1><a href="/featured-jet-charter/Jet-Charter-Flights-to-Napa-Valley-California.php">Jet Charter Flights to Napa Valley California</a></h1></div>
<div class="featured_charter_column"><h1><a href="/featured-jet-charter/Jet-Charter-Flights---Tampa-Florida.php">Jet Charter Flights - Tampa, Florida</a></h1></div>
<div class="featured_charter_column"><h1><a href="/featured-jet-charter/Private-Jet-charter-Flights-to-Denver-Colorado.php">Private Jet charter Flights to Denver Colorado</a></h1></div>
<div class="featured_charter_column"><h1><a href="/featured-jet-charter/Jet-Charter-Flights-in-Los-Angeles.php">Jet Charter Flights in Los Angeles</a></h1></div>
<div class="featured_charter_column"><h1><a href="/featured-jet-charter/Jet-Charter-Flights-to-Florida.php">Jet Charter Flights to Florida</a></h1></div>
<div class="featured_charter_column"><h1><a href="/featured-jet-charter/Private-Jet-Charters-to-Orlando-Florida.php">Private Jet Charters to Orlando, Florida</a></h1></div>
<div class="featured_charter_column"><h1><a href="/featured-jet-charter/Luxury-Yacht-and-Jet-Charters-in-Florida-Keys.php">Luxury Yacht and Jet Charters in Florida Keys</a></h1></div>
<div class="featured_charter_column"><h1><a href="/featured-jet-charter/Charter-a-Jet-to-Boston-Massachusetts.php">Charter a Jet to Boston Massachusetts</a></h1></div>
<div class="featured_charter_column"><h1><a href="/featured-jet-charter/Jet-Charter-Flights-to-Cabo-San-Lucas-Mexico.php">Jet Charter Flights to Cabo San Lucas Mexico</a></h1></div>
<div class="featured_charter_column"><h1><a href="/featured-jet-charter/Private-Jet-Charter-Flights-in-Dallas-Fort-Worth.php">Private Jet Charter Flights in Dallas Fort Worth</a></h1></div>
<div class="featured_charter_column"><h1><a href="/featured-jet-charter/Charter-Flights-and-Yacht-Charters-in-the-Bahamas.php">Charter Flights and Yacht Charters in the Bahamas</a></h1></div>
<div class="featured_charter_column"><h1><a href="/featured-jet-charter/Jet-Charter-Flights--Yacht-Charters---Virgin-Islands.php">Jet Charter Flights & Yacht Charters - Virgin Islands</a></h1></div>
</div>
Here is the CSS as it pertains to the HTML code above
#featured_charter_list {
width: 780px;
margin: 0px;
padding: 0px;
clear: both;
}
.featured_charter_column {
/* float: right; */
height: 25px;
margin-left: 10px;
margin-right: 0px;
margin-bottom: 0px;
margin-top: 0px;
padding: 0px;
width: 230px;
}
.featured_charter_column h1{
font-family: Arial, Helvetica, sans-serif;
margin-left: 20px;
font-size: 9px;
font-weight: lighter;
color: #527c95;
}
.featured_charter_column h1 a{
font-size: 9px;
font-weight: bolder;
color: #527c95;
border-bottom: 1px dotted;
text-decoration: none;
}
As you can see I have removed the float attribute but that doesn't seem to be the cause anyway. This has got me thrown.