function reposition() {
		$('container').setStyle('height', window.getHeight());
		if(window.getHeight()-120<=644) {
			$('flashContent').setStyle('height', window.getHeight()-120);
			//$('flash_main').setProperty('height', window.getHeight()-120);
		} else {
			$('flashContent').setStyle('height', 644);
			//$('flash_main').setProperty('height', 644);
		}
			
		$('footer').setStyle('top', $('flashContent').getCoordinates().bottom);
		//$('flashContent').set('text', 'Flash Area Current Height: ' + $('flashContent').getCoordinates().height);
		/*if(Browser.Engine.trident4) {
			$('container').setStyle('height', window.getHeight());
			alert('ie6 sucks);
		}*/
}
window.addEvent('resize', reposition);
window.addEvent('domready', reposition);

