function showRates()	{
		
	// create a variable for a quickie reference
	var international = document.getElementById('international');
	var international_button = document.getElementById('international_button');
	
	// now set the display for the relevant section
	if (international.style.display == 'none') {
		international.style.display='block';
		document.getElementById('international_button').innerHTML = '<input type="submit" name="button" class="shopButton" value="HIDE INTERNATIONAL RATES" onClick="showRates()" />';
	} else {
		international.style.display='none';
		document.getElementById('international_button').innerHTML = '<input type="submit" name="button" class="shopButton" value="SHOW INTERNATIONAL RATES" onClick="showRates()" />';
	}
	
} // finish up
