/**
 * Session/page data for Javascript
 */
var serverData={
	success:	true,
	// Current object id
	objectId:	182,
	// AJAX handlers
	handlers: {
		calendar:	'/media/site/helpers/js/calendar.php',		// Call with ?date=YYYY-MM-DD
		pagination:	'/media/site/helpers/js/pagination.php',	// Call with ?page=X
		commentPagination:	'/media/site/helpers/js/comment-pagination.php',	// Call with ?page=X&id=x
		slideshow:	'/media/site/helpers/js/slideshow.php',		// Call with ?id=X (0-8)
		like:		'/media/site/helpers/js/like.php',			// Call with ?id=X (Object id)
		rate:		'/media/site/helpers/js/rate.php',			// Call with ?id=X&rating=Y (Object id)
		comment:	'/media/site/helpers/js/comment.php'		// Call with ?report=<comment id> OR POST variables "objectId","comments"
	},
	// User data from session (only populated if user is logged in, one way or another)
	user:{
		userDataAvailable:	false
	},
	// Event calendar active days in YYYY-MM-DD format
	events: [

		'2010-09-24'
	],
	requestPostToStream: false
};
