
/* Notify Flash of user's window scroll position */
$(document).ready(function(){
	$(window).scroll(function(){ 
		var scroll = $(window).scrollTop();
	});
});


/* Called from Actionscript to adjust the height of the flashcontent div in html */
function scaleContent(yval) {
	var forcesize = new SWFForceSize( so, 800, yval );
}
