var curPage;

function hideComplete() {
	curPage.slideDown('400');
}

function handleChange(event) {
	var path = event.path;
	
	var oldPage = curPage;
	
	path = path.substr( 1 );
	
	if( path == "" )
	{
		// show landing
		curPage = $("#body");
	}
	else
	{
		// show listing
		curPage = $("#" + path );
	}
	
	if( curPage != oldPage )
	{
		if( oldPage == null )
		{
			curPage.slideDown('400');
		}
		else
		{
			oldPage.slideUp( '300', hideComplete );
		}
	}
	
}

$(function() {
	SWFAddress.addEventListener(SWFAddressEvent.CHANGE, handleChange);
});
