// ExternalInterface scripts to resize window

function resizeBrowserHeight(stageHeight){
		
		$('#flashcontent').height(stageHeight);
		$('#flashcontent').bind('resize', function() {
			
			// a hack - do nothing but contain this event
		});
}

function viewport() {
    return $(window).height(); 
}


function scrollUp() {
	 $('body').animate({scrollTop:0}, 'slow'); 
}

