<!--
var pee = -280;
var drec = 10;
var speed = 10;
var l = pee;
function Proj7GlideBack () {
	l += drec;
	if (document.layers) {
		document.leftcolumn.left = l;
		document.rightcolumn.left = l + 300;
		document.rightborder.left = l + 944;
	} else if (document.all) {
		document.all.leftcolumn.style.pixelLeft = l;
		document.all.rightcolumn.style.pixelLeft = l + 300;
		document.all.rightborder.style.pixelLeft = l + 944;
	} else if (document.getElementById) {
		document.getElementById('leftcolumn').style.left = l + 'px';
		document.getElementById('rightcolumn').style.left = l + 300 + 'px';
		document.getElementById('rightborder').style.left = l + 944 + 'px';
	}
	if (l < 0)
		setTimeout('Proj7GlideBack()', speed);
	else {
		if (document.layers) {
			var html = '';
			html += '<A HREF="#"';
			html += 'onClick="Proj7GlideOut(); return false;"';
			html += '<img src="http://www.saffroncollections.com/images/menu.gif" height="84" width="17" alt="Personal Stylist Menu" title="Personal Stylist Menu" />';
			html += '<\/A>';
			var a = window.document.leftcolumn.document.menubutton;
			a.document.open();
			a.document.write(html);
			a.document.close();
		} else if (document.all) {
			document.all.glider.onclick = moveIn;
		} else if (document.getElementById) {
			document.getElementById('glider').onclick = moveIn;
		}
	}
}
function Proj7GlideOut () {
	l -= drec;
	if (document.layers) {
		document.leftcolumn.left = l;
		document.rightcolumn.left = l + 300;
		document.rightborder.left = l + 944;
	} else if (document.all) {
		document.all.leftcolumn.style.pixelLeft = l;
		document.all.rightcolumn.style.pixelLeft = l + 300;
		document.all.rightborder.style.pixelLeft = l + 944;
	} else if (document.getElementById) {
		document.getElementById('leftcolumn').style.left = l + 'px';
		document.getElementById('rightcolumn').style.left = l + 300 + 'px';
		document.getElementById('rightborder').style.left = l + 944 + 'px';
	}
	if (l > pee)
		setTimeout('Proj7GlideOut()', speed);
	else {
		if (document.layers) {
			var html = '';
			html += '<A HREF="#"';
			html += 'onclick="Proj7GlideBack(); return false;"';
			html += '<img src="http://www.saffroncollections.com/images/menu.gif" height="84" width="17" alt="Personal Stylist Menu" title="Personal Stylist Menu" />';
			html += '<\/A>';
			var a = window.document.leftcolumn.document.glider;
			a.document.open();
			a.document.write(html);
			a.document.close();
		} else if (document.all) {
			document.all.glider.onclick = moveOut;
		} else if (document.getElementById) {
			document.getElementById('glider').onclick = moveOut;
		}
	}
}
function moveIn () {
	Proj7GlideOut();
	return false;
}
function moveOut() {
	Proj7GlideBack();
	return false;
}
if (document.layers) {
	origWidth = innerWidth;
	origHeight = innerHeight;
}
function reDo() {
	if (innerWidth != origWidth || innerHeight != origHeight)
		location.reload();
}
if (document.layers) onresize = redo;
//-->