// swtich image - used on interior design and retail store pages
function switchImage(imgName, imgSrc) {
  if (document.images)
  {
    if (imgSrc != "none")
    {
     document.images[imgName].src = imgSrc;
}
  }
}


// random pick of swf file
function randomSWFfile() {
	
	// get random number
	var randomnumber=Math.floor(Math.random()*5); // from 1 to 4
	
	// populate the homepageflashfile div
	if (randomnumber > 0) {
		var homepageflashfileContent = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="880" height="410"><param name="movie" value="site-flash/homepage'+randomnumber+'.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><embed src="site-flash/homepage'+randomnumber+'.swf" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="890" height="410"></embed></object>';
		document.getElementById('homepageflashfile').innerHTML = homepageflashfileContent;
	}
	
}