<!--

Initialise.addEvent(function() {

	a = $$('a.moreInformation');

	// Add event listener to every href we find.
	a.each(function (a) {
		a.observe('click',Freight.show,false);
	});


});


var Freight = {
	
	show: function(){
	
		this.href = '#moreInformation';
		
		if( $('FreightInformation').readAttribute('class') == 'close' )
		{
			$('FreightInformation').blindDown({ delay: 0.3, duration: 0.8 });
			
			$('FreightInformation').writeAttribute('class','open');
		}
		else
		{
			$('FreightInformation').blindUp({ delay: 0.3, duration: 0.8 });
			
			$('FreightInformation').writeAttribute('class','close');
		}
	}

}


-->

