try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}

var page_actions = {
	'main_orderTrendbook' : function() { 

		if( !$F('alternate') ) {
			$('delivery').hide();
			$('hdl_billingaddress').hide();
		}

		$('alternate').observe( 'click', function() {
			new Effect.toggle( 'delivery', 'blind', { duration: 0.5 } );
			new Effect.toggle( 'hdl_billingaddress', 'blind', { duration: 0.2 } );
		});
	}
};


document.observe( 'dom:loaded', function() {
	body_id = document.body.id;
	

	if( page_actions[body_id] ) {
		page_actions[body_id]();
	}

	
} );