﻿function InitializeMap(latitude, longitude) {
    $("#map1").gMap({
        latitude: latitude,
        longitude: longitude,
        markers: [{
            latitude: latitude,
            longitude: longitude,
            popup: true
        }],
        controls: ["GSmallMapControl", "GMapTypeControl"],
        zoom: 14
    });
}

$(document).ready(function () {
    $("a[rel='gallery']").colorbox({ width: "80%", height: "80%", opacity: 0.60 });

    $("#Logo").click(function () {
        window.location.href = "/";
    });

    $("#Logo").hover(function () {
        $(this).css('cursor', 'pointer');
    }, function () {
        $(this).css('cursor', 'auto');
    });

    $.ajax(
		{
		    type: 'GET',
		    url: 'http://www.google-analytics.com/ga.js',
		    success:
			function () {
			    var pageTracker = _gat._getTracker('UA-596270-11');
			    pageTracker._trackPageview();
			},
		    dataType: 'script',
		    cache: true
		}
	);
});
