/**
 * Contains various scripts for elements contained in specific blog posts.
 * Make sure you use livequery to load these because of ajax.
 */

//Adds a google map of Seth's apartment to the What's This What's This? post.
$('#ajaxContent').livequery(function(){
	if ($('#post-148').length) {
		var myPano = new GStreetviewPanorama(document.getElementById("whatsThisMap"));
		var sethApartment = new GLatLng(41.560171, -83.629862);
		var myPOV = {
			yaw: 45,
			pitch: -10
		};
		myPano.setLocationAndPOV(sethApartment, myPOV);
	}
});