$(document).ready(function(){
	if (!optedin) {
		$.colorbox(
			{
				href:'/optin', 
				width:518, 
				height:298,
				scrolling:false,
				overlayClose:false,
				escKey:false,
				onComplete:function(){
					$('#optin_form').submit(function(){
						if ($('#i_agree').is(':checked')) {
							jQuery.ajax({url:'/optedin'});
							$.colorbox.close();
						}
						return false;
					});
				},
				onLoad:function(){
					$('#cboxClose').remove();
				}
			}
		);
	}
	$('.map').mapify();
	$('#print_page a').click(
		function () {
			window.print();
		}
	);
});

(function($){
	$.fn.mapify = function() { 
		return this.each(function() {
			var $this = $(this);
			var points = $('p', $this).html().split(',');
			latLng = new google.maps.LatLng(points[0], points[1]);
			options = {
				zoom: 16,
				center: latLng,
				mapTypeId: google.maps.MapTypeId.ROADMAP
			};
			map = new google.maps.Map(this, options);
			marker = new google.maps.Marker({
				position: latLng,
				map: map
			});
		});
 	};
})(jQuery);
