// Safe T Bleed js

// on ready
$(document).ready(function() {
	// image zoom
	$(document.body).imageZoom();
	// maps
	if ($('#gmap').length) {
		// lat lng of Safe T Bleed
		var lat_lng = new google.maps.LatLng(40.724505, -111.9666450);
		// map options
		var map_options = {
			center: lat_lng
			,mapTypeControl: false
			,mapTypeId: google.maps.MapTypeId.ROADMAP
			,zoom: 15
		};
		// init the map
		var map = new google.maps.Map(document.getElementById('gmap'), map_options);
		// draw the marker
		var marker = new google.maps.Marker({ position: lat_lng, map: map, title: 'Safe-T-Bleed' });
		// create info window
		var info_window = new google.maps.InfoWindow({ content: '<p class="type_sans gmap_info"><strong>Safe-T-Bleed Corporation</strong><br />2170 South 3140 West<br />Suite B<br />West Valley City, UT 84119</p>'})
		// attach listener
		google.maps.event.addListener(marker, 'click', function() {
			info_window.open(map, marker);
		});
		// and start with it open
		info_window.open(map, marker);
	}
});

