
var JUMPBUTTON = {
	
	buttonWidth : 0,
	buttonHeight : 0,
	padding : 0,
	buttonElem : null,
	containingElem : null,
	
	init : function( width, height, button, container, padding ) {
		this.buttonWidth = width;
		this.buttonHeight = height;
		this.buttonElem = button;
		this.containingElem = container;
		this.padding = padding;
	},
	
	position : function() {
		var windowHeight = POSITIONING.getInsideWindowHeight();
		var windowWidth = POSITIONING.getInsideWindowWidth();
		var contentWidth = $( "#" + this.containingElem ).width();
		var contentLeft = POSITIONING.getElementLeft( this.containingElem );
		var buttonX = 1 + this.padding;
		var buttonY = ( ( windowHeight / 2 ) - ( this.buttonHeight / 2 ) ) / 3;
		POSITIONING.moveTo( this.buttonElem, buttonX, buttonY );
	}
	
};
