
// <![CDATA[
	function ShowCurrency( curr )
	{
		
		$("table#table_display_data tr").hide();
		$("table#table_display_data tr.table-footer-header").show();
		$("table#table_display_data tr." + curr ).show();
		
	}
	
	//removal of not visible footer boxes using jquery
	$(document).ready(function(){
		ShowCurrency( "GBP" );		
	});
	
// ]]>
