$( document ).ready(function(){
	$( '#activetypecast' ).bind( 'change', function(){
		if( parseInt( $( this ).val() ) > 0 ) {
			this.form.submit();
		}
	});
	$( '#article .toolbar .text a' ).click( function() {
		sClass = $( this ).attr( 'class' );
		if( sClass == 'small' ) {
			iSize = 85;
		} else if( sClass == 'medium' ) {
			iSize = 100;
		} else {
			iSize = 115;
		}
		$( '#article .lead, #article .story' ).css( 'font-size', iSize + '%' );
		return false;
	});
});