﻿var map;
jQuery.noConflict();  
function highlightLocation(locationID) {
var locSearch = "#L" + locationID;
jQuery(".fuelLocations ul li a").removeClass('activeLoc');
jQuery(locSearch).addClass('activeLoc');
}
function FocusLoc(latitude,longitude,locID) {
    map.setCenter(new GLatLng(latitude,longitude,locID),14);
	highlightLocation(locID);
}

