/**
 * (c) Copyright 2009 CarNinja, Inc.
 *
 */

window.addEvent( 'domready', function()
{	
	if( $( 'financing_trading' ).options[ $( 'financing_trading' ).selectedIndex ].value == 'yes' )
	{
		$( 'trade_info' ).setStyle( 'display', 'block' );
	}

	$( 'financing_trading' ).addEvent( 'change', handle_trading_change );

	$$( '.banner' ).each( function( objElem )
	{
		// For each one, create a nifty instance
		tmpBanner = new Banner( objElem );
	});
});

function handle_trading_change( objEvent )
{
	if( $( 'financing_trading' ).options[ $( 'financing_trading' ).selectedIndex ].value == 'no' )
	{
		$( 'trade_info' ).setStyle( 'display', 'none' );
	}
	else
	{
		$( 'trade_info' ).setStyle( 'display', 'block' );
	}
}