fcsglobalshowout='#col23notabs';

var clickHandler;
var map;
var lat;
var lng;
var locations;
var bounds;
var MapsAvailable=false;

$(document).ready(function() {

    // VISUAL EFFECTS

    $('div.sym_song').mouseover(function(){
        $(this).addClass("fcs_msg_item_over");   
    }).mouseout(function(){
        $(this).removeClass("fcs_msg_item_over");  
    });

    $('div.sym_song_twocols').mouseover(function(){
        $(this).addClass("fcs_msg_item_over");   
    }).mouseout(function(){
        $(this).removeClass("fcs_msg_item_over");  
    });

    // GMAPS

    try {
    if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("fcs_map"));
        //map.setMapType();
        map.addControl(new GLargeMapControl());
        map.addControl(new GMapTypeControl());

//mysetc();
        map.setCenter(new GLatLng(0, 0), 5, G_SATELLITE_MAP);

        map.enableDoubleClickZoom();
        map.enableScrollWheelZoom();
        map.setZoom(2);
	map.setMapType(G_HYBRID_MAP);
        MapsAvailable=true;
//        $.get('http://ShowYourMusic.com/sym/sym_find_srv.asp', fcs_maps_getLocations_complete );
    }
        }
        catch(e) {
           //alert(e + " : Maps services not available.");		// Return error message.
        }

	if(typeof fcs_show_marker!='undefined') {
		fcs_show_marker();
	}
    
});
