function setScenePanelBackground(flashColor) {

	$('.startpage .secondary .sidebar').css('background', 'transparent');

	$('.secondary').prepend('<div class="fader ' + oldFlashColor +'"></div>');

	if (!$('.secondary .panel').size()) {
		$('.secondary').prepend('<div class="panel ' + flashColor +'"></div>');
	} else {
		$('.secondary .panel').attr('class', 'panel ' + flashColor);
	}
	$('body').attr('class',flashColor);
	oldFlashColor = flashColor;
	$('.fader').fadeOut(500, function(){ $(this).remove(); });
}
if (swfobject.hasFlashPlayerVersion("9.0.0")) {
	$('head').append('<style type="text/css" media="screen"> .startpage #flash-fallback { display: none; } </style>');
}
$(document).ready(function(){
	displayTabbedContent('.top-lists', '.top-list', 'h3');
	$('.know-what select').change(function() { $(this).parents('form').submit(); }); 
});