Thanks Josh and Tristan!
I've recently tried another technique, with mixed results, that can be
viewed here:
http://www.mapformation.com/portfolio/sketchup/ustminneapolis360.htm
I thought it was the solution I was looking for after test-driving it
in Chrome, Firefox and MSIE 8...but some others I've had review the
solution have told me it's not working properly in Safari (on Windows,
and Macs older than version 3.1). I also had two individuals report
that the Google Earth imagery underneath the information is rendering
at a different projection or axis in MSIE (versions 6-7), although I
cannot replicate that problem personally.
It's a little frustrating, to feel SO close to solving this nagging
problem/issue, only to have the solution break in a few browsers. If
it helps, here's the bit of code/scripts that I'm currently using to
get the plug-in to display underneath my CSS nav menu:
<script type="text/javascript" src="
https://ajax.googleapis.com/ajax/
libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#GEmap').wrap('<div id="GEmapWrap" />')
$('#menu').mouseenter(function(){
$('#GEmap').hide()
})
$('#menu').mouseleave(function(){
$('#GEmap').show()
})
})
</script>
<style type="text/css">
#GEmapWrap {background: url(../../images/portfolio/sketchup/
ustminneapolis360.png) no-repeat; height: 450px;}
</style>
<script type="text/javascript">
var ge
google.load("earth","1")
function init(){
var supported=google.earth.isSupported()
if(supported){
var installed=google.earth.isInstalled()
if(installed){
google.earth.createInstance('GEmap',initCB,failureCB)}
else{
document.write("The Google Earth plug-in is not currently installed in
your browser. However, you may download a free copy of the plug-in at:
http://www.google.com/earth/explore/products/plugin.html")}}
else{
document.write("The Google Earth plug-in is not currently supported by
your browser.")}}
function initCB(instance){
ge=instance;
ge.getWindow().setVisibility(true);
ge.getOptions().setAtmosphereVisibility(true);
ge.getLayerRoot().enableLayerById(ge.LAYER_BUILDINGS, false);
ge.getLayerRoot().enableLayerById(ge.LAYER_BUILDINGS_LOW_RESOLUTION,
false);
ge.getNavigationControl().setVisibility(ge.VISIBILITY_SHOW);
var link=ge.createLink('');
link.setHref('
http://www.mapformation.com' + '/portfolio/sketchup/
ustminneapolis360.kmz');
var networkLink=ge.createNetworkLink('');
networkLink.set(link,true,true);
ge.getFeatures().appendChild(networkLink);}
function failureCB(errorCode){alert("failureCB: " + errorCode);}
google.setOnLoadCallback(init)
</script>
Thanks again! Sorry for the delay in my responding to your posts as
well. Had a bit of travel over the holiday week.
Derek