jQuery(document).ready(function() {
			jQuery("#gallery a").preloader();

			jQuery(".home .view-menus li:nth-child(4n), .dinner-menu li:nth-child(2n)").addClass("end-row");
			jQuery("#top-menu li:first-child").addClass("first-child");
			
			jQuery("#top-menu li:last-child").addClass("last-child");	
			
			setGoogleMap();
			
}); // Document Ready

function setGoogleMap() {
    if(document.getElementById("GoogleMap"))
    {
        var map = new GMap2(document.getElementById("GoogleMap"));
        map.setCenter(new GLatLng(26.196147, -81.812785), 17);  
        var point = new GLatLng(26.196147, -81.812785)
        map.addOverlay(new GMarker(point));
        map.openInfoWindow(map.getCenter(),document.createTextNode("MireMare Ristorante"));
        map.setUIToDefault();
        window.onunload = unLoad;
    }
}
