$(document).ready(function() {

	// input initial value
	$("input[type=text]").initval();

	$("#signup").submit(function(){
		$.post($("#signup").attr("action"),$("#signup").serialize(),function(data) {
			alert(data);
		});
		return false;
	});

	if ( $("#map").length )
	{
		if ( typeof google != "undefined" && typeof google.maps != 'undefined' ) {
			var point = new google.maps.LatLng(0,0);
			var opt = {
			  zoom: 16,
			  center: point,
			  mapTypeId: google.maps.MapTypeId.ROADMAP
			};

			var map = new google.maps.Map($("#map")[0],opt);
			var marker = new google.maps.Marker({
                position: point,
                map: map,
				title: 'pd3'
			});   
		}

	}

});
