var salePrices = [ 100000, 150000, 200000, 250000, 300000, 350000, 400000, 450000, 500000, 600000, 700000, 800000, 900000, 1000000 ];
var letPrices = [ 50, 100, 150, 200, 250, 300, 350, 400, 450, 500, 600, 700, 800, 900, 1000, 1500, 2000, 2500 ];
selectInstructionType.format.let = "&pound;%%price%% pw";

(function() {
	if ($("searchtel")) {
		var div = $("searchtel");
		var divHeight = div.getHeight();
		var divBottom = div.cumulativeOffset().top + divHeight;

		var positionDiv = function() {
			var viewportBottom = document.viewport.getScrollOffsets().top + document.viewport.getHeight() - 84;
			if (viewportBottom > divBottom) {
				div.style.position = "absolute";
				div.style.top = (viewportBottom - divHeight) + "px";
				div.style.marginTop = "0px";
			} else {
				div.style.position = "static";
				div.style.marginTop = "10px";
			}
		};

		Event.observe(window, "scroll", positionDiv); positionDiv();
	}
}).onLoad();

