// JavaScript Document
/*
	Use this file to insert JS in an element
*/
var styles = {

	'#btn_up a' : function(element) {
		element.href = "#";
		element.onclick = function() {
			document.ptviewer.startAutoPan( 0.0, 0.4, 1.0 );
		}
	},
	'#btn_down a' : function(element) {
		element.href = "#";
		element.onclick = function() {
			document.ptviewer.startAutoPan( 0.0, -0.4, 1.0 );			
		}
	},

	'#btn_left a' : function(element) {
		element.href = "#";
		element.onclick = function() {
			document.ptviewer.startAutoPan( -0.4, 0.0, 1.0 );
		}
	},

	'#btn_right a' : function(element) {
		element.href = "#";
		element.onclick = function() {
			document.ptviewer.startAutoPan( 0.4, 0.0, 1.0 );
		}
	},
	
	'#btn_stop a' : function(element) {
		element.href = "#";
		element.onclick = function() {
			document.ptviewer.stopAutoPan();
		}
	},
	
	'#btn_zoomin a' : function(element) {
		element.href = "#";
		element.onclick = function() {
			document.ptviewer.startAutoPan( 0.0, 0.0, 1.0/1.025 );
		}
	},

	'#btn_zoomout a' : function(element) {
		element.href = "#";
		element.onclick = function() {
			document.ptviewer.startAutoPan( 0.0, 0.0, 1.025 );
		}
	}
};
