// JavaScript Document		

function resizeFlash(f) {
	
	// no animation, safe
	//var d = document.getElementById("flasharea");
	//d.style.height = 180 + 'px';

	if (f == "open") {
		jQuery('#flasharea').delay(400).animate( {height: '180px'}, 600, "easeInOutQuint");
	} else {
		jQuery('#flasharea').delay(200).animate( {height: '60px'}, 600, "easeInOutQuint");
	}
}

