$(function(){
	// scrollTo
	$('a[href^=#]').click(function() {
		var $t = $(this.hash);
		if (this.hash.length > 1 && $t.length) {
			$.scrollTo($t, 400);
			return false;
		}
	});
	
	$('div#content p:last-child,div#content ul:last-child,div#content ol:last-child').each(function() {							
		$(this).addClass('last');
	});
	
	jQuery.event.add(window, "load", function(){
	  var centerPos = new google.maps.LatLng(26.2026963, 127.6624114);
	  var mapOptions = {
		zoom : 13,
		center : centerPos,
		mapTypeId: google.maps.MapTypeId.ROADMAP
	  };
	  var map = new google.maps.Map(document.getElementById("sMap"), mapOptions);
	  var marker = new google.maps.Marker({
		position: new google.maps.LatLng(26.2026963, 127.6624114),
		map: map, 
		title: ''
	  });
	});
});
