function expand(){
	var flashCont = document.getElementById('flashcontent')
	flashCont.style.width = (document.body.clientWidth - ((document.body.clientWidth-950)/2))+'px';
}

function contract(){
	var flashCont = document.getElementById('flashcontent')
	flashCont.style.width = '176px';
}

