// JavaScript Document
function show_Header_flash(){
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" name="myFlash" width="750" height="325" id="myFlash">\
  <param name="movie" value="images/header.swf" />\
  <param name="quality" value="high" />\
  <param name="allowFullScreen" value="false" />\
  <embed menu="false" src="images/header.swf" width="750" height="325" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="myFlash" id="myFlash" swliveconnect="true" ></embed>\
</object>');
}

// JavaScript Document
function show_Footer_flash(){
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" name="myFlashFooter" width="740" height="40" id="myFlashFooter">\
  <param name="movie" value="images/bottom.swf" />\
  <param name="quality" value="high" />\
  <param name="allowFullScreen" value="false" />\
  <embed menu="false" src="images/bottom.swf" width="740" height="40" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="myFlashFooter" id="myFlashFooter" swliveconnect="true" ></embed>\
</object>');
}


function ChangeGalleryTabs(gal_active, floor_active) {
	document.getElementById("galtab").className="pageGalleryInactiveTab";
	document.getElementById("floorstab").className="pageGalleryInactiveTab";
	 if (gal_active==true) {
		document.getElementById("galtab").className="pageGalleryTab";
		document.getElementById("Gallery").style.display = "block";
 		document.getElementById("FloorPlans").style.display = "none";
	} 
	if (floor_active==true) {
		document.getElementById("floorstab").className="pageGalleryTab";
		document.getElementById("Gallery").style.display = "none";
 		document.getElementById("FloorPlans").style.display = "block";
		return;
	}
}



var javascript_version = 1.0;
javascript_version = 1.1;
var newwin;
function launchwin(winurl,winname,winfeatures,w,h,scroll){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',no-resize'
	newwin = window.open(winurl,winname,settings);
	if (javascript_version > 1.0) setTimeout('newwin.focus();',250);
}



function hover(obj) {
	UL = obj.getElementsByTagName('ul');
    if (UL.length > 0) {
		stubMenu = UL[0].style;
		if (stubMenu.display == 'none' || stubMenu.display == '') stubMenu.display = 'block';
		else stubMenu.display = 'none';
	}
}

function setHover() {
	obj = document.getElementById('menu');
	if (!obj) return ;
	LI = document.getElementById('menu').getElementsByTagName('li');
	for(i=0; i < LI.length; i++) {
		LI[i].onmouseover = function() { hover(this) };
		LI[i].onmouseout = function() { hover(this); }
	}
}


function ScrollToElement(el) {
	if (!document.getElementById(el)) return ;
	y = document.getElementById(el).offsetTop;
	window.scrollTo(0, y);
}

