<!--
var imgArr = ["img/default_03.jpg", "img/canyon_03.jpg", "img/horse_03.jpg", "img/landscape_03.jpg", "img/men_03.jpg", "img/monk_03.jpg", "img/moon_03.jpg", "img/orpheum_03.jpg", "img/skyline_03.jpg"];
var curIdx = 0
function doFade()
{
	oDivImg.src = imgArr[curIdx%imgArr.length];
	fadeIn(oDiv);
	setTimeout("checkFadeIn()", 100);
	curIdx++;
}

function checkFadeIn()
{
	if (oDiv.filters.blendTrans.status == 0)
	{
		setTimeout("fadeOut(oDiv)", 1500);
	}
	else
	{
		setTimeout("checkFadeIn()", 100);
	}
}

function checkFadeOut()
{
	if (oDiv.filters.blendTrans.status == 0)
	{
		setTimeout("doFade()", 1000);
	}
	else
	{
		setTimeout("checkFadeOut()", 100);
	}
}


function fadeOut(el) 
{
	el.style.filter="blendTrans(duration=2)";
	if (el.filters.blendTrans.status != 2) 
	{
		el.filters.blendTrans.apply();
		el.style.visibility="hidden";
		el.filters.blendTrans.play();
	}
	setTimeout("checkFadeOut()", 100);
}

function fadeIn(el) 
{
	el.style.filter="blendTrans(duration=2)";
	if (el.filters.blendTrans.status != 2) 
	{
		el.filters.blendTrans.apply();
		el.style.visibility="visible";
		el.filters.blendTrans.play();
	}
}

function newImage(arg) 
{
	if (document.images) 
	{
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages(which,img) 
{
	document.getElementById(which).src = img;
}

var preloadFlag = false;
function preloadImages() 
{
	if (document.images) 
	{
		new_front_07_over = newImage("img/new_front_07-over.jpg");
		new_front_08_over = newImage("img/new_front_08-over.jpg");
		new_front_09_over = newImage("img/new_front_09-over.jpg");
		new_front_10_over = newImage("img/new_front_10-over.jpg");
		new_front_11_over = newImage("img/new_front_11-over.jpg");
		default_03 = newImage("img/default_03.jpg");
		canyon_03 = newImage("img/canyon_03.jpg");
		horse_03 = newImage("img/horse_03.jpg");
		landscape_03 = newImage("img/landscape_03.jpg");
		men_03 = newImage("img/men_03.jpg");
		monk_03 = newImage("img/monk_03.jpg");
		moon_03 = newImage("img/moon_03.jpg");
		orpheum_03 = newImage("img/orpheum_03.jpg");
		skyline_03 = newImage("img/skyline_03.jpg");
		preloadFlag = true;
	}
}

function disclaimer() 
{
	alert("The information on this website is of a general nature only and does not constitute legal advice.  Communications made to any firm personnel, whether by email, telephone or other means, will not by themselves create an attorney-client relationship, and any information provided in such communications may not be treated as confidential unless and until such an attorney-client relationship is established.  There should be no expectation that an attorney-client relationship has been created unless you receive and accept a written form of engagement agreement from authorized firm personnel setting forth the terms of the representation.");
	return false;
}

function senddisclaimer() 
{
	var agree = confirm("Communications made to any firm personnel via this website, or any other means, will not by themselves create an attorney-client relationship, and any information provided in such communications may not be treated as confidential unless and until such an attorney-client relationship is established.  There should be no expectation that an attorney-client relationship has been created unless you receive and accept a written form of engagement agreement from authorized firm personnel setting forth the terms of the representation.");
	if (agree==true)
	{
		document.getElementById("contact").submit();
	}
}

// -->
