﻿var embeddedMap;
function initMap(){
	var centerLL=new google.maps.LatLng(32.71705,-117.16412);
	var mapOptions = {
		zoom: 15,
		center: centerLL,
		mapTypeId: google.maps.MapTypeId.ROADMAP,
		navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
		mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU}
	};
	embeddedMap = new google.maps.Map(document.getElementById('gMap'), mapOptions);

	var marker=new google.maps.Marker({
		map: embeddedMap,
		position: centerLL
	});
	marker.setMap(embeddedMap);

	var infoContent = '<div style="height:55px;overflow:hidden;">'+
						'<span style="font-weight:bold;font-size:1.25em;">Stock Stephens</span>'+
						'<div id="bodyContent">'+
							'<p style="line-height:1.2em;margin-bottom:5px;">110 West C Street, Suite 1810<br />San Diego CA 92101</p>'+
						'</div>'+
						'</div>';
	
	//http://maps.google.com/?&daddr=San+Francisco
	//dirflg=r
	var infoWindow=new google.maps.InfoWindow({
		content:infoContent
	});
	infoWindow.open(embeddedMap,marker);
}
function initInfo(){
	var parkingText=$('<p>Parking at the Chamber Building<br />(Garage entrance off “C” Street)<br />Hourly Rate:  $2 every 20 minutes<br />Full Day:  $24<br /><br />There are also many public pay lots within walking distance, or you may choose to park at Horton Plaza, just three blocks from the Chamber Building, where parking is free for three hours with validation from the machine in front of Macy’s. The main entrance to the Horton Plaza parking structure is off 4th Avenue, just south of Broadway.</p>');
	var transitText=$('');
	$('#mapinfo').html(parkingText);
	$('.discloseHead').click(function(event){
		$(this).next('div').slideToggle();
		$(this).toggleClass('opened');
		event.preventDefault();
	}).hover(
		function(){
			$(this).addClass('hover');
		},
		function(){
			$(this).removeClass('hover');
		});
		
	$('#starting-location').watermark({watermarkText: 'Enter your starting location', watermarkCssClass: 'loc-watermark'});
	
	$('.loc-link a').click(function(){
		var start=$('#starting-location').val();
		start=start.replace(/ /g,'+');
		var url='http://maps.google.com/?daddr=110+West+C+Street+Suite+1810+San+Diego+CA+92101&saddr='+start;
		if($(this).attr('id')==='dir-trans'){
			url+='&dirflg=r';
		}
		$(this).attr('href',url);
	});
}
