<!--

//to fix IE flickering backs
try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}

//to fix IE min|max widths
function setWidth() {
	if (document.body.clientWidth <= 1000) x = "1000"
	else if (document.body.clientWidth >= 1252) x = "1252"
	else x = "100%"
	return x;
}

//to fix IE esoterics
$(document).ready(
	function() {
		var cells = $('#slides td');
		if (cells.length <= 3) {
			for (i=0;i<=cells.length-1;i++) {
				$(cells[i]).css('width', '500pt');
			}
		}
	}
);

//to add flash logo
//swfobject.embedSWF("/flash/logo_v.swf", "logo_flash", "227", "111", "7.0.0", "", {}, {menu:"false",wmode:"transparent"}, {});



//to add animated birch
//swfobject.embedSWF("/flash/header.swf", "header_birch", "920", "174", "7.0.0", "", {}, {menu:"false",wmode:"transparent"}, {});

// -->

