﻿/// <reference path="jquery.js" />
//only after the document is completely loaded will we then request to load the location map htm file into the given div
//could do this by using document or window. I am using window here but could have just as easily used document
//$(document).ready(function() {
$(window).bind("load", function() {
    $("#uxMap").load("LocationDetailMap.htm");
});

