var j=0;
var list=new Array()

list[0]='<div class="sloganHead">Intuitive</div><div class="whiteSloganHead">Automatic, without requiring conscious thought;<br />easily understood or grasped by intuition.</div>';

list[1]='<div class="sloganHead">Intelligent</div><div class="whiteSloganHead">Able to understand complex ideas, to learn from experience, to overcome obstacles by taking thought.</div>';

list[2]='<div class="sloganHead">Inspiring</div><div class="whiteSloganHead">Delivering an unconscious burst of creativity in an artistic, musical, or other intellectual endeavor.</div>';

function Quotes() {
		j++;
		if(j>=list.length) {
			j=0;
		}
		if (document.getElementById('quotes')) {
			document.getElementById('quotes').innerHTML=list[j];
		}
		else {
			document.layers[quotes].document.open();
			document.layers[quotes].document.write(html);
			document.layers[quotes].document.close();
		}
		
		setTimeout('Quotes()',5000);
}
function includeFlash(areaid,fileName,fWidth,fHeight,bgcolour) {
	var flashArea = { movie:fileName, width:fWidth, height:fHeight, majorversion:"9", build:"0", xi:"true", bgcolor:bgcolour };
	UFO.create(flashArea,areaid);
}

function showSiteBy() {
	var sb = document.getElementById("siteBy");
	sb.style.display = "block";
}

