/**
 * @return void
 */
function setFlashSize() {
	h = $(window).height();
	w = $(window).width();
	scrollerHeight = $('#swfMask').height() + 340;
	//$('#swfMask').height(h);
	$('#swfMask').width(w);	
	$('#wrapper').height(scrollerHeight);	
	if (h < 800) {
		$.scrollTo('25%');
	} else {
		$.scrollTo(0);
	}
}

$(window).resize(function(){
	setFlashSize();	
});








